drivers: sensor: adxl372: fix software reset delay

The indended value for the delay after the software reset of adxl372 is
1ms. Adjust the value accordingly.

Fixes: a3e7cea
Signed-off-by: Antoniu Miclaus <antoniu.miclaus@analog.com>
diff --git a/drivers/sensor/adxl372/adxl372.c b/drivers/sensor/adxl372/adxl372.c
index 3ead180..032a7c6 100644
--- a/drivers/sensor/adxl372/adxl372.c
+++ b/drivers/sensor/adxl372/adxl372.c
@@ -398,7 +398,7 @@
 	}
 	/* Writing code 0x52 resets the device */
 	ret = data->hw_tf->write_reg(dev, ADXL372_RESET, ADXL372_RESET_CODE);
-	k_sleep(K_MSEC(1000));
+	k_sleep(K_MSEC(1));
 
 	return ret;
 }