This commit fixes the "Unnecessary space before function pointer arguments" checkpatch warnings. Signed-off-by: Konrad Zapalowicz <bergo.torino@xxxxxxxxx> --- drivers/platform/x86/thinkpad_acpi.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index f846d79..940f83b 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c @@ -258,7 +258,7 @@ struct tp_acpi_drv_struct { const struct acpi_device_id *hid; struct acpi_driver *driver; - void (*notify) (struct ibm_struct *, u32); + void (*notify)(struct ibm_struct *, u32); acpi_handle *handle; u32 type; struct acpi_device *device; @@ -267,12 +267,12 @@ struct tp_acpi_drv_struct { struct ibm_struct { char *name; - int (*read) (struct seq_file *); - int (*write) (char *); - void (*exit) (void); - void (*resume) (void); - void (*suspend) (void); - void (*shutdown) (void); + int (*read)(struct seq_file *); + int (*write)(char *); + void (*exit)(void); + void (*resume)(void); + void (*suspend)(void); + void (*shutdown)(void); struct list_head all_drivers; @@ -290,7 +290,7 @@ struct ibm_struct { struct ibm_init_struct { char param[32]; - int (*init) (struct ibm_init_struct *); + int (*init)(struct ibm_init_struct *); umode_t base_procfs_mode; struct ibm_struct *data; }; -- 1.8.1.2 -- To unsubscribe from this list: send the line "unsubscribe platform-driver-x86" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html