diff options
author | Joe Perches <joe@perches.com> | 2009-07-11 13:42:37 +0200 |
---|---|---|
committer | Jean Delvare <khali@linux-fr.org> | 2009-07-11 13:42:37 +0200 |
commit | 24205e0850dd8a79c597e366daafdd5f31a24656 (patch) | |
tree | 10401eee6d57e1ee3917bd811e3a4b61eaa30e51 /drivers/hwmon | |
parent | 025dc740d01f99ccba945df1f9ef9e06b1c15d96 (diff) | |
download | linux-24205e0850dd8a79c597e366daafdd5f31a24656.tar.bz2 |
hwmon: (sht15) Remove unnecessary semicolon
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/sht15.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/sht15.c b/drivers/hwmon/sht15.c index 56cd6004da36..6290a259456e 100644 --- a/drivers/hwmon/sht15.c +++ b/drivers/hwmon/sht15.c @@ -257,7 +257,7 @@ static inline int sht15_update_single_val(struct sht15_data *data, (data->flag == SHT15_READING_NOTHING), msecs_to_jiffies(timeout_msecs)); if (ret == 0) {/* timeout occurred */ - disable_irq_nosync(gpio_to_irq(data->pdata->gpio_data));; + disable_irq_nosync(gpio_to_irq(data->pdata->gpio_data)); sht15_connection_reset(data); return -ETIME; } |