staging: gasket: core: remove ftrace-style debug logs
authorTodd Poynor <toddpoynor@google.com>
Fri, 10 Aug 2018 03:21:00 +0000 (20:21 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Aug 2018 17:43:42 +0000 (19:43 +0200)
Remove debug logs that only indicate the name of the entered function,
in favor of using ftrace for function tracing style logs.

Signed-off-by: Todd Poynor <toddpoynor@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/gasket/gasket_core.c

index 5f54b36..0fe5b86 100644 (file)
@@ -1789,7 +1789,6 @@ static int __init gasket_init(void)
 {
        int i;
 
-       pr_debug("%s\n", __func__);
        mutex_lock(&g_mutex);
        for (i = 0; i < GASKET_FRAMEWORK_DESC_MAX; i++) {
                g_descs[i].driver_desc = NULL;
@@ -1804,7 +1803,6 @@ static int __init gasket_init(void)
 
 static void __exit gasket_exit(void)
 {
-       pr_debug("%s\n", __func__);
 }
 MODULE_DESCRIPTION("Google Gasket driver framework");
 MODULE_VERSION(GASKET_FRAMEWORK_VERSION);