1
0
Fork 0

misc: bmp085: Use unsigned long to store jiffies

This fixes following compilation warning:

drivers/misc/bmp085.c: In function ‘bmp085_get_pressure’:
drivers/misc/bmp085.c:238:4: warning: comparison of distinct pointer
         types lacks a cast [enabled by default]

Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Bernhard Walle 2012-02-25 10:28:12 +01:00 committed by Greg Kroah-Hartman
parent 5aa4d20dc3
commit b222258ac1
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ struct bmp085_data {
u32 raw_temperature;
u32 raw_pressure;
unsigned char oversampling_setting;
u32 last_temp_measurement;
unsigned long last_temp_measurement;
s32 b6; /* calculated temperature correction coefficient */
};