diff options
author | Axel Lin <axel.lin@gmail.com> | 2010-07-20 18:19:34 -0400 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2010-08-03 09:48:56 -0400 |
commit | 8e4e2efdfab5448b0a01be8883d62fc90cce2a7e (patch) | |
tree | d60bf26b3e07002bce14b128f6fdbed0b24394be /drivers/platform/x86/fujitsu-laptop.c | |
parent | 24964639e132375f3d7eee9354b565aaa824d1dd (diff) |
fujitsu-laptop: remove unnecessary input_free_device calls
input_free_device() should only be used if input_register_device() was not
called yet or if it failed. This patch removes unnecessary
input_free_device calls.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Acked-by: Dmitry Torokhov <dtor@mail.ru>
Cc: Matthew Garrett <mjg@redhat.com>a
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers/platform/x86/fujitsu-laptop.c')
-rw-r--r-- | drivers/platform/x86/fujitsu-laptop.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/platform/x86/fujitsu-laptop.c b/drivers/platform/x86/fujitsu-laptop.c index e325aeb37d2e..4346d2652239 100644 --- a/drivers/platform/x86/fujitsu-laptop.c +++ b/drivers/platform/x86/fujitsu-laptop.c | |||
@@ -725,6 +725,7 @@ static int acpi_fujitsu_add(struct acpi_device *device) | |||
725 | 725 | ||
726 | err_unregister_input_dev: | 726 | err_unregister_input_dev: |
727 | input_unregister_device(input); | 727 | input_unregister_device(input); |
728 | input = NULL; | ||
728 | err_free_input_dev: | 729 | err_free_input_dev: |
729 | input_free_device(input); | 730 | input_free_device(input); |
730 | err_stop: | 731 | err_stop: |
@@ -738,8 +739,6 @@ static int acpi_fujitsu_remove(struct acpi_device *device, int type) | |||
738 | 739 | ||
739 | input_unregister_device(input); | 740 | input_unregister_device(input); |
740 | 741 | ||
741 | input_free_device(input); | ||
742 | |||
743 | fujitsu->acpi_handle = NULL; | 742 | fujitsu->acpi_handle = NULL; |
744 | 743 | ||
745 | return 0; | 744 | return 0; |
@@ -930,6 +929,7 @@ static int acpi_fujitsu_hotkey_add(struct acpi_device *device) | |||
930 | 929 | ||
931 | err_unregister_input_dev: | 930 | err_unregister_input_dev: |
932 | input_unregister_device(input); | 931 | input_unregister_device(input); |
932 | input = NULL; | ||
933 | err_free_input_dev: | 933 | err_free_input_dev: |
934 | input_free_device(input); | 934 | input_free_device(input); |
935 | err_free_fifo: | 935 | err_free_fifo: |
@@ -953,8 +953,6 @@ static int acpi_fujitsu_hotkey_remove(struct acpi_device *device, int type) | |||
953 | 953 | ||
954 | input_unregister_device(input); | 954 | input_unregister_device(input); |
955 | 955 | ||
956 | input_free_device(input); | ||
957 | |||
958 | kfifo_free(&fujitsu_hotkey->fifo); | 956 | kfifo_free(&fujitsu_hotkey->fifo); |
959 | 957 | ||
960 | fujitsu_hotkey->acpi_handle = NULL; | 958 | fujitsu_hotkey->acpi_handle = NULL; |