Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 310bae6b authored by Konstantin Dorfman's avatar Konstantin Dorfman Committed by Gerrit - the friendly Code Review server
Browse files

soc: qcom: spcom: pr_fmt to print function name



CTS failed on Lahaina due to absence of function name in the driver print.
This change adds function name to each driver print.

Change-Id: I2603c460e77578e7a56553a92058cc1b463c11c0
Signed-off-by: default avatarKonstantin Dorfman <kdorfman@codeaurora.org>
parent daae2461
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@
 * User Space Request & Response are synchronous.
 * read() & write() operations are blocking until completed or terminated.
 */
#define pr_fmt(fmt)	KBUILD_MODNAME ": " fmt
#define pr_fmt(fmt)	KBUILD_MODNAME ":%s: " fmt, __func__

#include <linux/kernel.h>	/* min()             */
#include <linux/module.h>	/* MODULE_LICENSE    */