[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4F32E062.1020709@broadcom.com>
Date: Wed, 8 Feb 2012 21:51:46 +0100
From: "Arend van Spriel" <arend@...adcom.com>
To: "Andy Whitcroft" <apw@...onical.com>
cc: "Dan Carpenter" <dan.carpenter@...cle.com>,
"Joe Perches" <joe@...ches.com>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: checkpatch complaint
checkpatch complains on code below and I must overlook something or
checkpatch gives a false negative/positive/whatever:
#define IFPTR(usb, idx) ((usb)->actconfig->interface[(idx)])
#define IFALTS(usb, idx) (IFPTR((usb), (idx))->altsetting[0])
#define IFDESC(usb, idx) IFALTS((usb), (idx)).desc
#define IFEPDESC(usb, idx, ep) \
(IFALTS((usb), (idx)).endpoint[(ep)]).desc
checkpatch errors:
ERROR: Macros with complex values should be enclosed in parenthesis
#169: FILE: drivers/net/wireless/brcm80211/brcmfmac/usb.c:58:
+#define IFDESC(usb, idx) (IFALTS((usb), (idx))).desc
ERROR: Macros with complex values should be enclosed in parenthesis
#170: FILE: drivers/net/wireless/brcm80211/brcmfmac/usb.c:59:
+#define IFEPDESC(usb, idx, ep) ((IFALTS((usb),
(idx))).endpoint[(ep)]).desc
Any ideas? I tried extra parenthesis around IFALTS but that does not
resolve it.
Gr. AvS
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists