You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
misc: bmp085: Handle jiffies overflow correctly
By using the time_is_before_jiffies() macro instead of normal arithmetic, the jiffies overflow is handled correctly. Signed-off-by: Bernhard Walle <bernhard@bwalle.de> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ef77d83fd7
commit
3734f7858f
@@ -234,7 +234,8 @@ static s32 bmp085_get_pressure(struct bmp085_data *data, int *pressure)
|
||||
int status;
|
||||
|
||||
/* alt least every second force an update of the ambient temperature */
|
||||
if (data->last_temp_measurement + 1*HZ < jiffies) {
|
||||
if (data->last_temp_measurement == 0 ||
|
||||
time_is_before_jiffies(data->last_temp_measurement + 1*HZ)) {
|
||||
status = bmp085_get_temperature(data, NULL);
|
||||
if (status != 0)
|
||||
goto exit;
|
||||
|
||||
Reference in New Issue
Block a user