[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1269894879-13884-1-git-send-email-luisbg@ubuntu.com>
Date: Mon, 29 Mar 2010 21:34:39 +0100
From: Luis de Bethencourt <luisbg@...ntu.com>
To: linville@...driver.com, lrodriguez@...eros.com
Cc: linux-wireless@...r.kernel.org, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org,
Luis de Bethencourt <luisbg@...nshine.com>,
Luis de Bethencourt <luisbg@...ntu.com>
Subject: [PATCH] Net: wireless: ath: fix macros coding style issue in hw.c
From: Luis de Bethencourt <luisbg@...nshine.com>
This is a patch to the ath/hw.c file that fixes up a warning about
macros found by the checkpatch.pl tool, that said that complex values
should be enclosed in parenthesis.
Signed-off-by: Luis de Bethencourt <luisbg@...ntu.com>
---
drivers/net/wireless/ath/hw.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/wireless/ath/hw.c b/drivers/net/wireless/ath/hw.c
index ecc9eb0..a8f81ea 100644
--- a/drivers/net/wireless/ath/hw.c
+++ b/drivers/net/wireless/ath/hw.c
@@ -19,8 +19,8 @@
#include "ath.h"
#include "reg.h"
-#define REG_READ common->ops->read
-#define REG_WRITE common->ops->write
+#define REG_READ (common->ops->read)
+#define REG_WRITE (common->ops->write)
/**
* ath_hw_set_bssid_mask - filter out bssids we listen
--
1.6.3.3
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists