aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberta Dobrescu <[email protected]>2014-09-25 20:09:10 +0300
committerGreg Kroah-Hartman <[email protected]>2014-09-28 22:20:30 -0400
commit10b2e445aa31c6e4118bbb928d76f1f7a6431402 (patch)
tree3fffd3fbf63f0b9c6797b80b02ebc7fcf65921fc
parentad3e646c5b7fcc485a574f4523cb7bf2077ef1a3 (diff)
staging: iio: light: Remove space before function pointer arguments
This fixes the following checkpatch.pl warning: WARNING: Unnecessary space before function pointer arguments Signed-off-by: Roberta Dobrescu <[email protected]> Acked-by: Daniel Baluta <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/iio/light/tsl2x7x.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/iio/light/tsl2x7x.h b/drivers/staging/iio/light/tsl2x7x.h
index c4acf5ff1794..ecae92211216 100644
--- a/drivers/staging/iio/light/tsl2x7x.h
+++ b/drivers/staging/iio/light/tsl2x7x.h
@@ -91,8 +91,8 @@ struct tsl2x7x_settings {
*/
struct tsl2X7X_platform_data {
int (*platform_power)(struct device *dev, pm_message_t);
- int (*power_on) (struct iio_dev *indio_dev);
- int (*power_off) (struct i2c_client *dev);
+ int (*power_on)(struct iio_dev *indio_dev);
+ int (*power_off)(struct i2c_client *dev);
struct tsl2x7x_lux platform_lux_table[TSL2X7X_MAX_LUX_TABLE_SIZE];
struct tsl2x7x_settings *platform_default_settings;
};