All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: octeon: use __func__ instead of func name
@ 2017-05-01 20:22 Craig Kewley
  0 siblings, 0 replies; only message in thread
From: Craig Kewley @ 2017-05-01 20:22 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: Aaro Koskinen, devel, linux-kernel, Craig Kewley

Fix checkpatch warning:
WARNING: Prefer using '"%s...", __func__' to using 'INTERFACE'

Signed-off-by: Craig Kewley <craigkewley@gmail.com>
---
 drivers/staging/octeon/ethernet-util.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/octeon/ethernet-util.h b/drivers/staging/octeon/ethernet-util.h
index 617da8037a4d..cb5540dc0e9d 100644
--- a/drivers/staging/octeon/ethernet-util.h
+++ b/drivers/staging/octeon/ethernet-util.h
@@ -39,7 +39,7 @@ static inline int INTERFACE(int ipd_port)
 	interface = cvmx_helper_get_interface_num(ipd_port);
 	if (interface >= 0)
 		return interface;
-	panic("Illegal ipd_port %d passed to INTERFACE\n", ipd_port);
+	panic("Illegal ipd_port %d passed to %s\n", ipd_port, __func__);
 }
 
 /**
-- 
2.12.2

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-05-01 20:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-01 20:22 [PATCH] staging: octeon: use __func__ instead of func name Craig Kewley

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.