[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1426094490-17065-1-git-send-email-marcus.folkesson@gmail.com>
Date: Wed, 11 Mar 2015 18:21:30 +0100
From: Marcus Folkesson <marcus.folkesson@...il.com>
To: Larry Finger <Larry.Finger@...inger.net>,
Jes Sorensen <Jes.Sorensen@...hat.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Marcus Folkesson <marcus.folkesson@...il.com>
Cc: linux-wireless@...r.kernel.org, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] staging: rtl8723au: Fix sparse warning cast to restricted __le16
This patch fixes the following sparse warnings:
CHECK drivers/staging/rtl8723au/hal/rtl8723a_hal_init.c
drivers/staging/rtl8723au/hal/rtl8723a_hal_init.c:265:37: warning:
cast to restricted __le16
drivers/staging/rtl8723au/hal/rtl8723a_hal_init.c:267:39: warning:
cast to restricted __le16
Signed-off-by: Marcus Folkesson <marcus.folkesson@...il.com>
---
drivers/staging/rtl8723au/include/rtl8723a_hal.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/rtl8723au/include/rtl8723a_hal.h b/drivers/staging/rtl8723au/include/rtl8723a_hal.h
index e146336..f642b11 100644
--- a/drivers/staging/rtl8723au/include/rtl8723a_hal.h
+++ b/drivers/staging/rtl8723au/include/rtl8723a_hal.h
@@ -255,10 +255,10 @@ struct hal_data_8723a {
struct hal_version VersionID;
enum rt_customer_id CustomerID;
- u16 FirmwareVersion;
- u16 FirmwareVersionRev;
- u16 FirmwareSubVersion;
- u16 FirmwareSignature;
+ __le16 FirmwareVersion;
+ __le16 FirmwareVersionRev;
+ __le16 FirmwareSubVersion;
+ __le16 FirmwareSignature;
/* current WIFI_PHY values */
u32 ReceiveConfig;
--
1.9.1
--
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