diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2012-01-08 13:34:06 -0500 |
---|---|---|
committer | Guenter Roeck <guenter.roeck@ericsson.com> | 2012-03-18 21:26:36 -0400 |
commit | c9e1498a186b643fff21c5d5340a35fcf1151181 (patch) | |
tree | a6675ffb289a1627581dd6c638a489bb06be893c | |
parent | 0910b28ef44a0ef3653ac6a10ee8eab0acfe3f09 (diff) |
hwmon: (sht15) fix checkpatch issues
fixed:
WARNING: line over 80 characters
#809: FILE: sht15.c:809:
+ /* If still not occurred or another handler has been scheduled */
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
-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 91fdd1fe18b0..8b011d016621 100644 --- a/drivers/hwmon/sht15.c +++ b/drivers/hwmon/sht15.c | |||
@@ -806,7 +806,7 @@ static void sht15_bh_read_data(struct work_struct *work_s) | |||
806 | */ | 806 | */ |
807 | atomic_set(&data->interrupt_handled, 0); | 807 | atomic_set(&data->interrupt_handled, 0); |
808 | enable_irq(gpio_to_irq(data->pdata->gpio_data)); | 808 | enable_irq(gpio_to_irq(data->pdata->gpio_data)); |
809 | /* If still not occurred or another handler has been scheduled */ | 809 | /* If still not occurred or another handler was scheduled */ |
810 | if (gpio_get_value(data->pdata->gpio_data) | 810 | if (gpio_get_value(data->pdata->gpio_data) |
811 | || atomic_read(&data->interrupt_handled)) | 811 | || atomic_read(&data->interrupt_handled)) |
812 | return; | 812 | return; |