Skip to content

Commit

Permalink
staging: bcm: Typedefs.h Fix "foo * bar" warning.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Aybuke Ozdemir authored and Peter P Waskiewicz Jr committed Mar 17, 2014
1 parent 54585e5 commit cc43ada
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions drivers/staging/bcm/Typedefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ typedef unsigned int B_UINT32;
typedef unsigned long ULONG;
typedef unsigned long DWORD;

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 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;
Expand Down

0 comments on commit cc43ada

Please sign in to comment.