Commit 7ae25994 authored by Jes Sorensen's avatar Jes Sorensen Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723au: rtl8723a_recv.h: Don't put parenthesis around constants

parent 9b6cd3e6
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -18,15 +18,15 @@
#include <osdep_service.h>
#include <drv_types.h>

#define NR_RECVBUFF (4)
#define NR_RECVBUFF			4

#define NR_PREALLOC_RECV_SKB (8)
#define NR_PREALLOC_RECV_SKB		8

#define RECV_BLK_SZ			512
#define RECV_BLK_CNT			16
#define RECV_BLK_TH			RECV_BLK_CNT

#define MAX_RECVBUF_SZ (15360) /*  15k < 16k */
#define MAX_RECVBUF_SZ			15360 /*  15k < 16k */

#define RECV_BULK_IN_ADDR		0x80
#define RECV_INT_IN_ADDR		0x81
@@ -48,7 +48,7 @@ struct phy_stat
};

/*  Rx smooth factor */
#define	Rx_Smooth_Factor (20)
#define	Rx_Smooth_Factor		20

struct interrupt_msg_format {
	unsigned int C2H_MSG0;