Commit 020e46e0 authored by Aybuke Ozdemir's avatar Aybuke Ozdemir Committed by Greg Kroah-Hartman

Staging: iio: meter: Fix unnecessary space warning

Fixed "Unnecessary space before function pointer argument" checkpatch.pl
warning in ade7854.h
Signed-off-by: default avatarAybuke Ozdemir <aybuke.147@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b5e736bd
......@@ -153,14 +153,14 @@
struct ade7854_state {
struct spi_device *spi;
struct i2c_client *i2c;
int (*read_reg_8) (struct device *, u16, u8 *);
int (*read_reg_16) (struct device *, u16, u16 *);
int (*read_reg_24) (struct device *, u16, u32 *);
int (*read_reg_32) (struct device *, u16, u32 *);
int (*write_reg_8) (struct device *, u16, u8);
int (*write_reg_16) (struct device *, u16, u16);
int (*write_reg_24) (struct device *, u16, u32);
int (*write_reg_32) (struct device *, u16, u32);
int (*read_reg_8)(struct device *, u16, u8 *);
int (*read_reg_16)(struct device *, u16, u16 *);
int (*read_reg_24)(struct device *, u16, u32 *);
int (*read_reg_32)(struct device *, u16, u32 *);
int (*write_reg_8)(struct device *, u16, u8);
int (*write_reg_16)(struct device *, u16, u16);
int (*write_reg_24)(struct device *, u16, u32);
int (*write_reg_32)(struct device *, u16, u32);
int irq;
struct mutex buf_lock;
u8 tx[ADE7854_MAX_TX] ____cacheline_aligned;
......
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