BIT macro cleanup,now in bitops.h<snip>
Signed-off-by: Milind Arun Choudhary <milindchoudhary@xxxxxxxxx>
---
diff --git a/drivers/net/s2io.h b/drivers/net/s2io.hWhy not use "LLBIT(63 - loc)" instead?
index 0de0c65..5aa3be5 100644
--- a/drivers/net/s2io.h
+++ b/drivers/net/s2io.h
@@ -14,6 +14,7 @@
#define _S2IO_H
#define TBD 0
+#undef BIT
#define BIT(loc) (0x8000000000000000ULL >> (loc))
#define vBIT(val, loc, sz) (((u64)val) << (64-loc-sz))
#define INV(d) ((d&0xff)<<24) | (((d>>8)&0xff)<<16) | (((d>>16)&0xff)<<8)| ((d>>24)&0xff)