Commit fe5e6cf5 authored by navin patidar's avatar navin patidar Committed by Greg Kroah-Hartman
Browse files

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

parent 588aa70a
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -197,14 +197,6 @@ static inline u32 _RND8(u32 sz)
	return val;
}

static inline u32 _RND128(u32 sz)
{
	u32	val;

	val = ((sz >> 7) + ((sz & 127) ? 1 : 0)) << 7;
	return val;
}

struct rtw_netdev_priv_indicator {
	void *priv;
	u32 sizeof_priv;
+1 −1
Original line number Diff line number Diff line
@@ -160,7 +160,7 @@ static int recvbuf2recvframe(struct adapter *adapt, struct sk_buff *pskb)
		switch (haldata->UsbRxAggMode) {
		case USB_RX_AGG_DMA:
		case USB_RX_AGG_MIX:
			pkt_offset = (u16)_RND128(pkt_offset);
			pkt_offset = (u16) round_up(pkt_offset, 128);
			break;
		case USB_RX_AGG_USB:
			pkt_offset = (u16)_RND4(pkt_offset);