From: Malcolm Priestley Date: Sat, 22 Mar 2014 09:01:30 +0000 (+0000) Subject: staging: vt6656: rxtx Replace vnt_tx_fifo_head wReserved X-Git-Tag: v3.16-rc1~30^2~36^2~1379 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=03a9cf3418fa95fcba65bcbdfd68dc84f7e916bb;p=~emulex%2Finfiniband.git staging: vt6656: rxtx Replace vnt_tx_fifo_head wReserved At run time wReserved has the value of wCurrentRate. Replace with current_rate with __le16 base type and endian correct wCurrentRate. Signed-off-by: Malcolm Priestley Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vt6656/rxtx.c b/drivers/staging/vt6656/rxtx.c index 4bb13a7c75f..2b67b1bdd90 100644 --- a/drivers/staging/vt6656/rxtx.c +++ b/drivers/staging/vt6656/rxtx.c @@ -800,7 +800,7 @@ static u16 s_vGenerateTxParameter(struct vnt_private *pDevice, u16 wFifoCtl; u8 byFBOption = AUTO_FB_NONE; - pFifoHead->wReserved = wCurrentRate; + pFifoHead->current_rate = cpu_to_le16(wCurrentRate); wFifoCtl = pFifoHead->wFIFOCtl; if (wFifoCtl & FIFOCTL_AUTO_FB_0) diff --git a/drivers/staging/vt6656/rxtx.h b/drivers/staging/vt6656/rxtx.h index 779c6722d1b..4dfb2e0c6ae 100644 --- a/drivers/staging/vt6656/rxtx.h +++ b/drivers/staging/vt6656/rxtx.h @@ -219,7 +219,7 @@ struct vnt_tx_fifo_head { u16 wFIFOCtl; __le16 time_stamp; u16 wFragCtl; - u16 wReserved; + __le16 current_rate; } __packed; struct vnt_tx_buffer {