Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1577209 > unrolled thread

[PATCH] staging: rtl8712: rtl8712: fixed missing conversion to le32

Started byCarlos Palminha <CARLOS.PALMINHA@synopsys.com>
First post2017-02-09 01:00 +0100
Last post2017-02-09 01:00 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] staging: rtl8712: rtl8712: fixed missing conversion to le32 Carlos Palminha <CARLOS.PALMINHA@synopsys.com> - 2017-02-09 01:00 +0100

#1577209 — [PATCH] staging: rtl8712: rtl8712: fixed missing conversion to le32

FromCarlos Palminha <CARLOS.PALMINHA@synopsys.com>
Date2017-02-09 01:00 +0100
Subject[PATCH] staging: rtl8712: rtl8712: fixed missing conversion to le32
Message-ID<t8Kjw-6RL-23@gated-at.bofh.it>
Fixed missing conversion to le32, detected by sparse
(invalid assignment from int to __le32)

---
 drivers/staging/rtl8712/rtl8712_xmit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8712/rtl8712_xmit.c b/drivers/staging/rtl8712/rtl8712_xmit.c
index 041508d6ec6d..4231a0a83097 100644
--- a/drivers/staging/rtl8712/rtl8712_xmit.c
+++ b/drivers/staging/rtl8712/rtl8712_xmit.c
@@ -573,7 +573,7 @@ static void update_txdesc(struct xmit_frame *pxmitframe, uint *pmem, int sz)
 		}
 	} else if (pxmitframe->frame_tag == MGNT_FRAMETAG) {
 		/* offset 4 */
-		ptxdesc->txdw1 |= (0x05) & 0x1f;/*CAM_ID(MAC_ID), default=5;*/
+		ptxdesc->txdw1 |= cpu_to_le32((0x05) & 0x1f);/*CAM_ID(MAC_ID), default=5;*/
 		qsel = (uint)(pattrib->qsel & 0x0000001f);
 		ptxdesc->txdw1 |= cpu_to_le32((qsel << QSEL_SHT) & 0x00001f00);
 		ptxdesc->txdw1 |= cpu_to_le32(BIT(16));/* Non-QoS */
--
2.11.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web