Commit 9d7650c2 authored by Mintz, Yuval's avatar Mintz, Yuval Committed by David S. Miller
Browse files

qed: Align DP_ERR style with other DP macros

parent 48848a06
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -701,10 +701,12 @@ struct qed_common_ops {

/* Debug print definitions */
#define DP_ERR(cdev, fmt, ...)					\
	do {							\
		pr_err("[%s:%d(%s)]" fmt,			\
		       __func__, __LINE__,			\
		       DP_NAME(cdev) ? DP_NAME(cdev) : "",	\
		       ## __VA_ARGS__)					     \
		       ## __VA_ARGS__);				\
	} while (0)

#define DP_NOTICE(cdev, fmt, ...)				      \
	do {							      \