aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc
diff options
context:
space:
mode:
authorTomas Winkler <tomas.winkler@intel.com>2014-03-16 08:35:54 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-03-17 18:57:43 -0400
commitd63b30954cba971377ce51d9df16949572bc1289 (patch)
tree59adc181b376be1ac879f5677c4053b23e2ba310 /drivers/misc
parentdbac4745270bb8a8c5f119d21ce25764e9d7557d (diff)
mei: fix Unnecessary space after function pointer name
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>
Diffstat (limited to 'drivers/misc')
-rw-r--r--drivers/misc/mei/mei_dev.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/misc/mei/mei_dev.h b/drivers/misc/mei/mei_dev.h
index 2ef559333990..94a516716d22 100644
--- a/drivers/misc/mei/mei_dev.h
+++ b/drivers/misc/mei/mei_dev.h
@@ -237,20 +237,20 @@ struct mei_cl {
237 */ 237 */
238struct mei_hw_ops { 238struct mei_hw_ops {
239 239
240 bool (*host_is_ready) (struct mei_device *dev); 240 bool (*host_is_ready)(struct mei_device *dev);
241 241
242 bool (*hw_is_ready) (struct mei_device *dev); 242 bool (*hw_is_ready)(struct mei_device *dev);
243 int (*hw_reset) (struct mei_device *dev, bool enable); 243 int (*hw_reset)(struct mei_device *dev, bool enable);
244 int (*hw_start) (struct mei_device *dev); 244 int (*hw_start)(struct mei_device *dev);
245 void (*hw_config) (struct mei_device *dev); 245 void (*hw_config)(struct mei_device *dev);
246 246
247 void (*intr_clear) (struct mei_device *dev); 247 void (*intr_clear)(struct mei_device *dev);
248 void (*intr_enable) (struct mei_device *dev); 248 void (*intr_enable)(struct mei_device *dev);
249 void (*intr_disable) (struct mei_device *dev); 249 void (*intr_disable)(struct mei_device *dev);
250 250
251 int (*hbuf_free_slots) (struct mei_device *dev); 251 int (*hbuf_free_slots)(struct mei_device *dev);
252 bool (*hbuf_is_ready) (struct mei_device *dev); 252 bool (*hbuf_is_ready)(struct mei_device *dev);
253 size_t (*hbuf_max_len) (const struct mei_device *dev); 253 size_t (*hbuf_max_len)(const struct mei_device *dev);
254 254
255 int (*write)(struct mei_device *dev, 255 int (*write)(struct mei_device *dev,
256 struct mei_msg_hdr *hdr, 256 struct mei_msg_hdr *hdr,
@@ -259,7 +259,7 @@ struct mei_hw_ops {
259 int (*rdbuf_full_slots)(struct mei_device *dev); 259 int (*rdbuf_full_slots)(struct mei_device *dev);
260 260
261 u32 (*read_hdr)(const struct mei_device *dev); 261 u32 (*read_hdr)(const struct mei_device *dev);
262 int (*read) (struct mei_device *dev, 262 int (*read)(struct mei_device *dev,
263 unsigned char *buf, unsigned long len); 263 unsigned char *buf, unsigned long len);
264}; 264};
265 265