staging: bcm: Typedefs.h Fix "foo * bar" warning.
authorAybuke Ozdemir <aybuke.147@gmail.com>
Sun, 16 Mar 2014 04:14:43 +0000 (06:14 +0200)
committerPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Mon, 17 Mar 2014 05:24:41 +0000 (22:24 -0700)
This patch fixes these error messages found by checkpatch.pl:
ERROR: "foo* bar" should be "foo *bar"

Signed-off-by: Aybuke Ozdemir <aybuke.147@gmail.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
drivers/staging/bcm/Typedefs.h

index 0a56a75a7b3809057df66f17e54ba4f4656aa1de..90b3b25dd606fba50260a0b0168487f61cce49db 100644 (file)
@@ -25,16 +25,16 @@ typedef unsigned int B_UINT32;
 typedef unsigned long ULONG;
 typedef unsigned long DWORD;
 
-typedef charPCHAR;
-typedef shortPSHORT;
-typedef intPINT;
-typedef longPLONG;
-typedef voidPVOID;
-
-typedef unsigned charPUCHAR;
-typedef unsigned shortPUSHORT;
-typedef unsigned intPUINT;
-typedef unsigned longPULONG;
+typedef char *PCHAR;
+typedef short *PSHORT;
+typedef int *PINT;
+typedef long *PLONG;
+typedef void *PVOID;
+
+typedef unsigned char *PUCHAR;
+typedef unsigned short *PUSHORT;
+typedef unsigned int *PUINT;
+typedef unsigned long *PULONG;
 typedef unsigned long long ULONG64;
 typedef unsigned long long LARGE_INTEGER;
 typedef unsigned int UINT32;