staging: gasket: removed unnecessary debug message to fix coding style warning
authorAshish Vara <ashishvara89@yahoo.com>
Fri, 19 Feb 2021 18:14:33 +0000 (23:44 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 10 Mar 2021 08:25:27 +0000 (09:25 +0100)
removed unnecessary out of memory message to fix coding style warning.

Signed-off-by: Ashish Vara <ashishvara89@yahoo.com>
Link: https://lore.kernel.org/r/0c041d98-9b0f-95a3-3b19-ff94243a0bbc@yahoo.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/gasket/gasket_page_table.c

index 6f6273c83822c7cc23667344536f41f110079908..2dbf3d9b8f3487c95a7a8a41350f6e232465bd9a 100644 (file)
@@ -262,8 +262,6 @@ int gasket_page_table_init(struct gasket_page_table **ppg_tbl,
        if (bytes != 0) {
                pg_tbl->entries = vzalloc(bytes);
                if (!pg_tbl->entries) {
-                       dev_dbg(device,
-                               "No memory for address translation metadata\n");
                        kfree(pg_tbl);
                        *ppg_tbl = NULL;
                        return -ENOMEM;