aboutsummaryrefslogtreecommitdiffstats
path: root/src/drivers/net/wlan_compat.h
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2013-03-25 18:02:20 +0000
committerMichael Brown <mcb30@ipxe.org>2013-03-27 15:16:52 +0000
commit8a49782eebc66c3529578735386f03c262e1995b (patch)
tree4cd35d24da10ff60ba5f69d1de06d76b65ec34c1 /src/drivers/net/wlan_compat.h
parentdab7910beb348853da73c8e73904d1c87708ab22 (diff)
downloadipxe-8a49782eebc66c3529578735386f03c262e1995b.tar.gz
[prism2] Use standard type names
Avoid using UINT16 and similar typedefs, which are non-standard in the iPXE codebase and generate conflicts when trying to include any of the EFI headers. Also fix trailing whitespace in the affected files, to prevent complaints from git. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/drivers/net/wlan_compat.h')
-rw-r--r--src/drivers/net/wlan_compat.h46
1 files changed, 12 insertions, 34 deletions
diff --git a/src/drivers/net/wlan_compat.h b/src/drivers/net/wlan_compat.h
index 9b7693bb..5b7b2f3c 100644
--- a/src/drivers/net/wlan_compat.h
+++ b/src/drivers/net/wlan_compat.h
@@ -39,7 +39,7 @@
*
* --------------------------------------------------------------------
*
-* Portions of the development of this software were funded by
+* Portions of the development of this software were funded by
* Intersil Corporation as part of PRISM(R) chipset product development.
*
* --------------------------------------------------------------------
@@ -109,7 +109,7 @@ FILE_LICENCE ( GPL2_ONLY );
/* Lets try to figure out what we've got. Kernel mode or User mode? */
#if defined(__KERNEL__)
#define WLAN_OS WLAN_LINUX_KERNEL
-#else
+#else
#define WLAN_OS WLAN_LINUX_USER
#endif
@@ -179,8 +179,8 @@ FILE_LICENCE ( GPL2_ONLY );
Linux/PPC on PowerMacs (PCI)
Arm/Intel Xscale (PCI)
- This may also affect PLX boards and other BE &| PPC platforms;
- as new ones are discovered, add them below.
+ This may also affect PLX boards and other BE &| PPC platforms;
+ as new ones are discovered, add them below.
*/
#if (WLAN_HOSTIF == WLAN_PCI)
@@ -226,28 +226,6 @@ FILE_LICENCE ( GPL2_ONLY );
#define BIT30 0x40000000
#define BIT31 0x80000000
-typedef unsigned char UINT8;
-typedef unsigned short UINT16;
-typedef unsigned long UINT32;
-
-typedef signed char INT8;
-typedef signed short INT16;
-typedef signed long INT32;
-
-typedef unsigned int UINT;
-typedef signed int INT;
-
-typedef unsigned long long UINT64;
-typedef signed long long INT64;
-
-#define UINT8_MAX (0xffUL)
-#define UINT16_MAX (0xffffUL)
-#define UINT32_MAX (0xffffffffUL)
-
-#define INT8_MAX (0x7fL)
-#define INT16_MAX (0x7fffL)
-#define INT32_MAX (0x7fffffffL)
-
/*=============================================================*/
/*------ Compiler Portability Macros --------------------------*/
/*=============================================================*/
@@ -298,7 +276,7 @@ typedef signed long long INT64;
int __i__; \
printk(KERN_DEBUG x ":"); \
for( __i__=0; __i__ < (n); __i__++) \
- printk( " %02x", ((UINT8*)(p))[__i__]); \
+ printk( " %02x", ((uint8_t*)(p))[__i__]); \
printk("\n"); }
#define DBFENTER { if ( WLAN_DBVAR >= 4 ){ WLAN_LOG_DEBUG0(3,"Enter\n"); } }
@@ -312,11 +290,11 @@ typedef signed long long INT64;
#define WLAN_LOG_DEBUG5(l,x,n1,n2,n3,n4,n5) if ( WLAN_DBVAR >= (l)) printk(KERN_DEBUG "%s: " x , __FUNCTION__ , (n1), (n2), (n3), (n4), (n5));
#define WLAN_LOG_DEBUG6(l,x,n1,n2,n3,n4,n5,n6) if ( WLAN_DBVAR >= (l)) printk(KERN_DEBUG "%s: " x , __FUNCTION__ , (n1), (n2), (n3), (n4), (n5), (n6));
#else
- #define WLAN_ASSERT(c)
+ #define WLAN_ASSERT(c)
#define WLAN_HEX_DUMP( l, s, p, n)
- #define DBFENTER
- #define DBFEXIT
+ #define DBFENTER
+ #define DBFEXIT
#define WLAN_LOG_DEBUG0(l, s)
#define WLAN_LOG_DEBUG1(l, s,n)
@@ -344,11 +322,11 @@ typedef signed long long INT64;
#define WLAN_LOG_NOTICE3(s,n1,n2,n3)
#define WLAN_LOG_NOTICE4(s,n1,n2,n3,n4)
- #define WLAN_ASSERT(c)
+ #define WLAN_ASSERT(c)
#define WLAN_HEX_DUMP( l, s, p, n)
- #define DBFENTER
- #define DBFEXIT
+ #define DBFENTER
+ #define DBFEXIT
#define WLAN_LOG_INFO0(s)
#define WLAN_LOG_INFO1(s,n)
@@ -378,7 +356,7 @@ typedef signed long long INT64;
#ifdef CONFIG_SMP
#define __SMP__ 1
-#endif
+#endif
#ifndef KERNEL_VERSION
#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))