OSDN Git Service

misc: ad525x_dpot: Unnecessary space before function pointer arguments
authorDhaval Shah <dhaval.shah@softnautics.com>
Fri, 8 Dec 2017 08:07:30 +0000 (13:37 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 18 Dec 2017 14:59:17 +0000 (15:59 +0100)
Resolved all the Unnecessary space before function pointer arguments
checkpatch warnings. Issue found by checkpatch.

Signed-off-by: Dhaval Shah <dhaval.shah@softnautics.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/ad525x_dpot.h

index 6bd1eba..443a51f 100644 (file)
@@ -195,12 +195,12 @@ enum dpot_devid {
 struct dpot_data;
 
 struct ad_dpot_bus_ops {
-       int (*read_d8) (void *client);
-       int (*read_r8d8) (void *client, u8 reg);
-       int (*read_r8d16) (void *client, u8 reg);
-       int (*write_d8) (void *client, u8 val);
-       int (*write_r8d8) (void *client, u8 reg, u8 val);
-       int (*write_r8d16) (void *client, u8 reg, u16 val);
+       int (*read_d8)(void *client);
+       int (*read_r8d8)(void *client, u8 reg);
+       int (*read_r8d16)(void *client, u8 reg);
+       int (*write_d8)(void *client, u8 val);
+       int (*write_r8d8)(void *client, u8 reg, u8 val);
+       int (*write_r8d16)(void *client, u8 reg, u16 val);
 };
 
 struct ad_dpot_bus_data {