mirror of
https://github.com/torvalds/linux.git
synced 2024-12-14 23:25:54 +00:00
staging: rt2860: remove custom min() and max()
Signed-off-by: Andy Shevchenko <ext-andriy.shevchenko@nokia.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
ba07d0cbc9
commit
97eea3afa2
@ -26,6 +26,7 @@
|
||||
*/
|
||||
|
||||
#include "../rt_config.h"
|
||||
#include <linux/kernel.h>
|
||||
|
||||
#define BA_ORI_INIT_SEQ (pEntry->TxSeq[TID]) /*1 // inital sequence number of BA session */
|
||||
|
||||
|
@ -38,6 +38,7 @@
|
||||
|
||||
#include "../rt_config.h"
|
||||
#include <stdarg.h>
|
||||
#include <linux/kernel.h>
|
||||
|
||||
u8 CISCO_OUI[] = { 0x00, 0x40, 0x96 };
|
||||
|
||||
|
@ -324,14 +324,6 @@ struct rt_rtmp_sg_list {
|
||||
/* */
|
||||
/* Some utility macros */
|
||||
/* */
|
||||
#ifndef min
|
||||
#define min(_a, _b) (((_a) < (_b)) ? (_a) : (_b))
|
||||
#endif
|
||||
|
||||
#ifndef max
|
||||
#define max(_a, _b) (((_a) > (_b)) ? (_a) : (_b))
|
||||
#endif
|
||||
|
||||
#define GET_LNA_GAIN(_pAd) ((_pAd->LatchRfRegs.Channel <= 14) ? (_pAd->BLNAGain) : ((_pAd->LatchRfRegs.Channel <= 64) ? (_pAd->ALNAGain0) : ((_pAd->LatchRfRegs.Channel <= 128) ? (_pAd->ALNAGain1) : (_pAd->ALNAGain2))))
|
||||
|
||||
#define INC_COUNTER64(Val) (Val.QuadPart++)
|
||||
|
@ -35,6 +35,7 @@
|
||||
-------- ---------- ----------------------------------------------
|
||||
*/
|
||||
#include "../rt_config.h"
|
||||
#include <linux/kernel.h>
|
||||
|
||||
void STARxEAPOLFrameIndicate(struct rt_rtmp_adapter *pAd,
|
||||
struct rt_mac_table_entry *pEntry,
|
||||
|
Loading…
Reference in New Issue
Block a user