diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2020-05-09 18:58:31 +0000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2020-05-19 00:10:35 +1000 |
commit | 6a8aa782cece2330322c33452a767f53f8ba38c9 (patch) | |
tree | 1aa4ebc1f9ee85ceb11ca8262739f5a297a4fcc6 /drivers/ps3 | |
parent | 331aa46aaf51325d8532a4948f5127b2edc441a5 (diff) | |
download | linux-6a8aa782cece2330322c33452a767f53f8ba38c9.tar.gz linux-6a8aa782cece2330322c33452a767f53f8ba38c9.tar.bz2 linux-6a8aa782cece2330322c33452a767f53f8ba38c9.zip |
drivers/ps3: Remove duplicate error messages
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
Diffstat (limited to 'drivers/ps3')
-rw-r--r-- | drivers/ps3/ps3-lpm.c | 2 | ||||
-rw-r--r-- | drivers/ps3/ps3-vuart.c | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/drivers/ps3/ps3-lpm.c b/drivers/ps3/ps3-lpm.c index 064b5884ba13..e54aa2d82f50 100644 --- a/drivers/ps3/ps3-lpm.c +++ b/drivers/ps3/ps3-lpm.c @@ -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; } diff --git a/drivers/ps3/ps3-vuart.c b/drivers/ps3/ps3-vuart.c index 8e80e0933a1b..4ed131eaff51 100644 --- a/drivers/ps3/ps3-vuart.c +++ b/drivers/ps3/ps3-vuart.c @@ -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; } |