diff options
author | Todd Poynor <toddpoynor@google.com> | 2018-08-09 20:21:00 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-08-27 19:43:42 +0200 |
commit | 1fb227bf2ed2834fb0a3e9baf5aba34a19b111f6 (patch) | |
tree | fa3a9688588e731bf462f0ce7a9e43273a2a7b81 /drivers/staging/gasket | |
parent | 57db4be3bbe45bdbd0b073ed6048e86830ded865 (diff) |
staging: gasket: core: remove ftrace-style debug logs
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>
Diffstat (limited to 'drivers/staging/gasket')
-rw-r--r-- | drivers/staging/gasket/gasket_core.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/gasket/gasket_core.c b/drivers/staging/gasket/gasket_core.c index 5f54b3615f67..0fe5b86b294c 100644 --- a/drivers/staging/gasket/gasket_core.c +++ b/drivers/staging/gasket/gasket_core.c @@ -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); |