Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f751ffab authored by Niadh's avatar Niadh Committed by Greg Kroah-Hartman
Browse files

Staging: RT2860 Fixed all errors in mlme.h and all but one in rtmp.h.



I have fixed all errors in mlme.h and fixed all bar one in rtmp.h.
I think I can fix rtmp.h too by moving a brace up two lines, I just dont know if it will work.
If someone can confirm it will work I will change it.

Signed-off-by: default avatarNeil Munro <neilmunro@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 6e5db771
Loading
Loading
Loading
Loading
+10 −11
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@

	Revision History:
	Who			When			What
	--------	----------		----------------------------------------------
	--------	----------		------------------------------
	John Chang	2003-08-28		Created
	John Chang  2004-09-06      modified for RT2600

@@ -60,7 +60,7 @@
#define JAP_W56	4
#define MAX_RD_REGION 5

#define BEACON_LOST_TIME            4 * OS_HZ	/* 2048 msec = 2 sec */
#define BEACON_LOST_TIME            (4 * OS_HZ)	/* 2048 msec = 2 sec */

#define DLS_TIMEOUT                 1200	/* unit: msec */
#define AUTH_TIMEOUT                300	/* unit: msec */
@@ -176,8 +176,7 @@

/* reset all OneSecTx counters */
#define RESET_ONE_SEC_TX_CNT(__pEntry) \
if (((__pEntry)) != NULL) \
{ \
if (((__pEntry)) != NULL) { \
	(__pEntry)->OneSecTxRetryOkCount = 0; \
	(__pEntry)->OneSecTxFailCount = 0; \
	(__pEntry)->OneSecTxNoRetryOkCount = 0; \
+2 −2

File changed.

Contains only whitespace changes.