All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: rtl8712: rtl8712: fixed missing conversion to le32
@ 2017-02-08 23:54 Carlos Palminha
  0 siblings, 0 replies; only message in thread
From: Carlos Palminha @ 2017-02-08 23:54 UTC (permalink / raw)
  To: devel, linux-kernel; +Cc: dan.carpenter, Carlos Palminha, gregkh

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

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-02-08 23:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-08 23:54 [PATCH] staging: rtl8712: rtl8712: fixed missing conversion to le32 Carlos Palminha

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.