staging: iio: light: Remove space before function pointer arguments
authorRoberta Dobrescu <roberta.dobrescu@gmail.com>
Thu, 25 Sep 2014 17:09:10 +0000 (20:09 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 29 Sep 2014 02:20:30 +0000 (22:20 -0400)
This fixes the following checkpatch.pl warning:
WARNING: Unnecessary space before function pointer arguments

Signed-off-by: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Acked-by: Daniel Baluta <daniel.baluta@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/iio/light/tsl2x7x.h

index c4acf5ff17944e618a73d7b40449676dca7cb26e..ecae9221121673afc97b7956588c0f73ac24d36e 100644 (file)
@@ -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;
 };