aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2009-07-11 13:42:37 +0200
committerJean Delvare <khali@linux-fr.org>2009-07-11 13:42:37 +0200
commit24205e0850dd8a79c597e366daafdd5f31a24656 (patch)
tree10401eee6d57e1ee3917bd811e3a4b61eaa30e51
parenthwmon: (max6650) Fix lock imbalance (diff)
downloadlinux-dev-24205e0850dd8a79c597e366daafdd5f31a24656.tar.xz
linux-dev-24205e0850dd8a79c597e366daafdd5f31a24656.zip
hwmon: (sht15) Remove unnecessary semicolon
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Jean Delvare <khali@linux-fr.org>
-rw-r--r--drivers/hwmon/sht15.c2
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;
}