Commit 4b31467d authored by Aybuke Ozdemir's avatar Aybuke Ozdemir Committed by Greg Kroah-Hartman

staging: iio: addac: adt7316.h Fix Unnecessary space after function pointer name

The patch fixes the following checkpatch.pl warnings:
WARNING: Unnecessary space after function pointer name.
Signed-off-by: default avatarAybuke Ozdemir <aybuke.147@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 67fc0120
...@@ -18,10 +18,10 @@ struct adt7316_bus { ...@@ -18,10 +18,10 @@ struct adt7316_bus {
void *client; void *client;
int irq; int irq;
int irq_flags; int irq_flags;
int (*read) (void *client, u8 reg, u8 *data); int (*read)(void *client, u8 reg, u8 *data);
int (*write) (void *client, u8 reg, u8 val); int (*write)(void *client, u8 reg, u8 val);
int (*multi_read) (void *client, u8 first_reg, u8 count, u8 *data); 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 (*multi_write)(void *client, u8 first_reg, u8 count, u8 *data);
}; };
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment