Commit d913e54e authored by James A Shackleford's avatar James A Shackleford Committed by Greg Kroah-Hartman

staging: rtl8712: remove inline _RND8() and use round_up()

Signed-off-by: default avatarJames A Shackleford <shack@linux.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 83543d32
...@@ -184,11 +184,6 @@ static inline void flush_signals_thread(void) ...@@ -184,11 +184,6 @@ static inline void flush_signals_thread(void)
flush_signals(current); flush_signals(current);
} }
static inline u32 _RND8(u32 sz)
{
return ((sz >> 3) + ((sz & 7) ? 1 : 0)) << 3;
}
static inline u32 _RND128(u32 sz) static inline u32 _RND128(u32 sz)
{ {
return ((sz >> 7) + ((sz & 127) ? 1 : 0)) << 7; return ((sz >> 7) + ((sz & 127) ? 1 : 0)) << 7;
......
...@@ -351,7 +351,7 @@ int r8712_cmd_thread(void *context) ...@@ -351,7 +351,7 @@ int r8712_cmd_thread(void *context)
&padapter->dvobjpriv; &padapter->dvobjpriv;
u8 blnPending = 0; u8 blnPending = 0;
pcmdpriv->cmd_issued_cnt++; pcmdpriv->cmd_issued_cnt++;
cmdsz = _RND8((pcmd->cmdsz)); /* _RND8 */ cmdsz = round_up(pcmd->cmdsz, 8);
wr_sz = TXDESC_SIZE + 8 + cmdsz; wr_sz = TXDESC_SIZE + 8 + cmdsz;
pdesc->txdw0 |= cpu_to_le32((wr_sz-TXDESC_SIZE) & pdesc->txdw0 |= cpu_to_le32((wr_sz-TXDESC_SIZE) &
0x0000ffff); 0x0000ffff);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment