Messages in this thread Patch in this message |  | | Subject | [PATCH 1/2] platform/x86/thinkpad_acpi: Delete an error message for a failed memory allocation in three functions | From | SF Markus Elfring <> | Date | Mon, 18 Dec 2017 22:28:01 +0100 |
| |
From: Markus Elfring <elfring@users.sourceforge.net> Date: Mon, 18 Dec 2017 22:08:49 +0100
Omit an extra message for a memory allocation failure in these functions.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> --- drivers/platform/x86/thinkpad_acpi.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index 117be48ff4de..729144925880 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c @@ -816,10 +816,8 @@ static int __init register_tpacpi_subdriver(struct ibm_struct *ibm) BUG_ON(!ibm->acpi); ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL); - if (!ibm->acpi->driver) { - pr_err("failed to allocate memory for ibm->acpi->driver\n"); + if (!ibm->acpi->driver) return -ENOMEM; - } sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name); ibm->acpi->driver->ids = ibm->acpi->hid; @@ -3639,7 +3637,6 @@ static int __init hotkey_init(struct ibm_init_struct *iibm) hotkey_keycode_map = kmalloc(TPACPI_HOTKEY_MAP_SIZE, GFP_KERNEL); if (!hotkey_keycode_map) { - pr_err("failed to allocate memory for key map\n"); res = -ENOMEM; goto err_exit; } @@ -5996,10 +5993,8 @@ static int __init led_init(struct ibm_init_struct *iibm) tpacpi_leds = kzalloc(sizeof(*tpacpi_leds) * TPACPI_LED_NUMLEDS, GFP_KERNEL); - if (!tpacpi_leds) { - pr_err("Out of memory for LED data\n"); + if (!tpacpi_leds) return -ENOMEM; - } for (i = 0; i < TPACPI_LED_NUMLEDS; i++) { tpacpi_leds[i].led = -1; -- 2.15.1
|  |