drivers/ps3: Remove duplicate error messages
authorMarkus Elfring <elfring@users.sourceforge.net>
Sat, 9 May 2020 18:58:31 +0000 (18:58 +0000)
committerMichael Ellerman <mpe@ellerman.id.au>
Mon, 18 May 2020 14:10:35 +0000 (00:10 +1000)
Remove duplicate memory allocation failure error messages.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Geoff Levand <geoff@infradead.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/c763425d8e6f680d3180b3246c9e77727df179d0.1589049250.git.geoff@infradead.org
drivers/ps3/ps3-lpm.c
drivers/ps3/ps3-vuart.c

index 064b588..e54aa2d 100644 (file)
@@ -1111,8 +1111,6 @@ int ps3_lpm_open(enum ps3_lpm_tb_type tb_type, void *tb_cache,
                lpm_priv->tb_cache_internal = kzalloc(
                        lpm_priv->tb_cache_size + 127, GFP_KERNEL);
                if (!lpm_priv->tb_cache_internal) {
-                       dev_err(sbd_core(), "%s:%u: alloc internal tb_cache "
-                               "failed\n", __func__, __LINE__);
                        result = -ENOMEM;
                        goto fail_malloc;
                }
index 8e80e09..4ed131e 100644 (file)
@@ -917,7 +917,6 @@ static int ps3_vuart_bus_interrupt_get(void)
        vuart_bus_priv.bmp = kzalloc(sizeof(struct ports_bmp), GFP_KERNEL);
 
        if (!vuart_bus_priv.bmp) {
-               pr_debug("%s:%d: kzalloc failed.\n", __func__, __LINE__);
                result = -ENOMEM;
                goto fail_bmp_malloc;
        }