staging: rtl8188eu: Use round_up() instead of _RND8()

Signed-off-by: navin patidar <navin.patidar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
navin patidar 2014-06-22 14:21:40 +05:30 committed by Greg Kroah-Hartman
parent fe5e6cf52c
commit 248df424eb
2 changed files with 1 additions and 9 deletions

View File

@ -493,7 +493,7 @@ s32 rtl8188eu_xmitframe_complete(struct adapter *adapt, struct xmit_priv *pxmitp
pfirstframe = pxmitframe;
len = xmitframe_need_length(pfirstframe) + TXDESC_SIZE + (pfirstframe->pkt_offset*PACKET_OFFSET_SZ);
pbuf_tail = len;
pbuf = _RND8(pbuf_tail);
pbuf = round_up(pbuf_tail, 8);
/* check pkt amount in one bulk */
desc_cnt = 0;

View File

@ -189,14 +189,6 @@ static inline u32 _RND4(u32 sz)
return val;
}
static inline u32 _RND8(u32 sz)
{
u32 val;
val = ((sz >> 3) + ((sz & 7) ? 1 : 0)) << 3;
return val;
}
struct rtw_netdev_priv_indicator {
void *priv;
u32 sizeof_priv;