Fix kernel LINT build after r299363.

Define shadowing macros the same way to avoid macro redefinition
compile error(s) for now.

Approved by:	np @
This commit is contained in:
Hans Petter Selasky 2016-05-10 16:31:18 +00:00
parent ed246e8260
commit ae14b49908

View File

@ -169,7 +169,7 @@ static const int debug_flags = DBG_RX;
#define test_and_clear_bit(bit, p) atomic_cmpset_int((p), ((*(p)) | (1<<bit)), ((*(p)) & ~(1<<bit)))
#define max_t(type, a, b) (type)max((a), (b))
#define cpu_to_be32 htobe32
#define cpu_to_be32(x) htobe32(x)
/* Standard PHY definitions */
#define BMCR_LOOPBACK BMCR_LOOP