staging: iio: addac: adt7316.h Fix Unnecessary space after function pointer name
authorAybuke Ozdemir <aybuke.147@gmail.com>
Sun, 16 Mar 2014 04:37:24 +0000 (06:37 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Mar 2014 16:58:07 +0000 (09:58 -0700)
The patch fixes the following checkpatch.pl warnings:
WARNING: Unnecessary space after function pointer name.

Signed-off-by: Aybuke Ozdemir <aybuke.147@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/iio/addac/adt7316.h

index 2dbfb499528d2be1afc954b06a67c99a574de7d9..ec50bf34628d344b357a51546ae6dc953e02096a 100644 (file)
@@ -18,10 +18,10 @@ struct adt7316_bus {
        void *client;
        int irq;
        int irq_flags;
-       int (*read) (void *client, u8 reg, u8 *data);
-       int (*write) (void *client, u8 reg, u8 val);
-       int (*multi_read) (void *client, u8 first_reg, u8 count, u8 *data);
-       int (*multi_write) (void *client, u8 first_reg, u8 count, u8 *data);
+       int (*read)(void *client, u8 reg, u8 *data);
+       int (*write)(void *client, u8 reg, u8 val);
+       int (*multi_read)(void *client, u8 first_reg, u8 count, u8 *data);
+       int (*multi_write)(void *client, u8 first_reg, u8 count, u8 *data);
 };
 
 #ifdef CONFIG_PM_SLEEP