diff options
author | Joe Perches <joe@perches.com> | 2010-11-14 22:04:38 -0500 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2011-01-07 17:03:40 -0500 |
commit | 3098064d3b4a9bf9d2855b2a89599ad77695e324 (patch) | |
tree | 1f46810b03ca255f0859c60c8349f3968b21ba5a /drivers/platform | |
parent | 5369c02d951afc72d68f5f85089160a63d31ca37 (diff) |
drivers/platform/x86: Remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/classmate-laptop.c | 2 | ||||
-rw-r--r-- | drivers/platform/x86/thinkpad_acpi.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/platform/x86/classmate-laptop.c b/drivers/platform/x86/classmate-laptop.c index 341cbfef93ee..d2b7720c0e6f 100644 --- a/drivers/platform/x86/classmate-laptop.c +++ b/drivers/platform/x86/classmate-laptop.c | |||
@@ -653,7 +653,7 @@ static void cmpc_keys_handler(struct acpi_device *dev, u32 event) | |||
653 | 653 | ||
654 | if ((event & 0x0F) < ARRAY_SIZE(cmpc_keys_codes)) | 654 | if ((event & 0x0F) < ARRAY_SIZE(cmpc_keys_codes)) |
655 | code = cmpc_keys_codes[event & 0x0F]; | 655 | code = cmpc_keys_codes[event & 0x0F]; |
656 | inputdev = dev_get_drvdata(&dev->dev);; | 656 | inputdev = dev_get_drvdata(&dev->dev); |
657 | input_report_key(inputdev, code, !(event & 0x10)); | 657 | input_report_key(inputdev, code, !(event & 0x10)); |
658 | } | 658 | } |
659 | 659 | ||
diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index e8c21994b36d..f372dc7ae14e 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c | |||
@@ -6345,7 +6345,7 @@ static int __init brightness_init(struct ibm_init_struct *iibm) | |||
6345 | "as change notification\n"); | 6345 | "as change notification\n"); |
6346 | tpacpi_hotkey_driver_mask_set(hotkey_driver_mask | 6346 | tpacpi_hotkey_driver_mask_set(hotkey_driver_mask |
6347 | | TP_ACPI_HKEY_BRGHTUP_MASK | 6347 | | TP_ACPI_HKEY_BRGHTUP_MASK |
6348 | | TP_ACPI_HKEY_BRGHTDWN_MASK);; | 6348 | | TP_ACPI_HKEY_BRGHTDWN_MASK); |
6349 | return 0; | 6349 | return 0; |
6350 | } | 6350 | } |
6351 | 6351 | ||