Skip to content

Commit

Permalink
mei: fix Unnecessary space after function pointer name
Browse files Browse the repository at this point in the history
Fix checkpatch warining:
Unnecessary space after function pointer name

Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Tomas Winkler authored and Greg Kroah-Hartman committed Mar 17, 2014
1 parent dbac474 commit d63b309
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions drivers/misc/mei/mei_dev.h
Original file line number Diff line number Diff line change
Expand Up @@ -237,20 +237,20 @@ struct mei_cl {
*/
struct mei_hw_ops {

bool (*host_is_ready) (struct mei_device *dev);
bool (*host_is_ready)(struct mei_device *dev);

bool (*hw_is_ready) (struct mei_device *dev);
int (*hw_reset) (struct mei_device *dev, bool enable);
int (*hw_start) (struct mei_device *dev);
void (*hw_config) (struct mei_device *dev);
bool (*hw_is_ready)(struct mei_device *dev);
int (*hw_reset)(struct mei_device *dev, bool enable);
int (*hw_start)(struct mei_device *dev);
void (*hw_config)(struct mei_device *dev);

void (*intr_clear) (struct mei_device *dev);
void (*intr_enable) (struct mei_device *dev);
void (*intr_disable) (struct mei_device *dev);
void (*intr_clear)(struct mei_device *dev);
void (*intr_enable)(struct mei_device *dev);
void (*intr_disable)(struct mei_device *dev);

int (*hbuf_free_slots) (struct mei_device *dev);
bool (*hbuf_is_ready) (struct mei_device *dev);
size_t (*hbuf_max_len) (const struct mei_device *dev);
int (*hbuf_free_slots)(struct mei_device *dev);
bool (*hbuf_is_ready)(struct mei_device *dev);
size_t (*hbuf_max_len)(const struct mei_device *dev);

int (*write)(struct mei_device *dev,
struct mei_msg_hdr *hdr,
Expand All @@ -259,7 +259,7 @@ struct mei_hw_ops {
int (*rdbuf_full_slots)(struct mei_device *dev);

u32 (*read_hdr)(const struct mei_device *dev);
int (*read) (struct mei_device *dev,
int (*read)(struct mei_device *dev,
unsigned char *buf, unsigned long len);
};

Expand Down

0 comments on commit d63b309

Please sign in to comment.