diff options
author | Joe Perches <joe@perches.com> | 2013-10-23 21:14:52 +0200 |
---|---|---|
committer | Matthew Garrett <matthew.garrett@nebula.com> | 2013-11-21 00:51:03 +0100 |
commit | b222cca6002c9396c0ac03b68756f8c565d73561 (patch) | |
tree | 9606fde2e51be15aff436c6fae5ac36e3b615b23 /drivers/platform/x86/panasonic-laptop.c | |
parent | sony-laptop: fixe typos in sony_laptop_input_keycode_map (diff) | |
download | linux-b222cca6002c9396c0ac03b68756f8c565d73561.tar.xz linux-b222cca6002c9396c0ac03b68756f8c565d73561.zip |
platform:x86: Remove OOM message after input_allocate_device
Emitting an OOM message isn't necessary after input_allocate_device
as there's a generic OOM and a dump_stack already done.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
Diffstat (limited to 'drivers/platform/x86/panasonic-laptop.c')
-rw-r--r-- | drivers/platform/x86/panasonic-laptop.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/platform/x86/panasonic-laptop.c b/drivers/platform/x86/panasonic-laptop.c index 10d12b221601..3008fd20572e 100644 --- a/drivers/platform/x86/panasonic-laptop.c +++ b/drivers/platform/x86/panasonic-laptop.c @@ -490,11 +490,8 @@ static int acpi_pcc_init_input(struct pcc_acpi *pcc) int error; input_dev = input_allocate_device(); - if (!input_dev) { - ACPI_DEBUG_PRINT((ACPI_DB_ERROR, - "Couldn't allocate input device for hotkey")); + if (!input_dev) return -ENOMEM; - } input_dev->name = ACPI_PCC_DRIVER_NAME; input_dev->phys = ACPI_PCC_INPUT_PHYS; |