Commit cc43adab authored by Aybuke Ozdemir's avatar Aybuke Ozdemir Committed by Peter P Waskiewicz Jr

staging: bcm: Typedefs.h Fix "foo * bar" warning.

This patch fixes these error messages found by checkpatch.pl:
ERROR: "foo* bar" should be "foo *bar"
Signed-off-by: default avatarAybuke Ozdemir <aybuke.147@gmail.com>
Signed-off-by: default avatarPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
parent 54585e56
...@@ -25,16 +25,16 @@ typedef unsigned int B_UINT32; ...@@ -25,16 +25,16 @@ typedef unsigned int B_UINT32;
typedef unsigned long ULONG; typedef unsigned long ULONG;
typedef unsigned long DWORD; typedef unsigned long DWORD;
typedef char* PCHAR; typedef char *PCHAR;
typedef short* PSHORT; typedef short *PSHORT;
typedef int* PINT; typedef int *PINT;
typedef long* PLONG; typedef long *PLONG;
typedef void* PVOID; typedef void *PVOID;
typedef unsigned char* PUCHAR; typedef unsigned char *PUCHAR;
typedef unsigned short* PUSHORT; typedef unsigned short *PUSHORT;
typedef unsigned int* PUINT; typedef unsigned int *PUINT;
typedef unsigned long* PULONG; typedef unsigned long *PULONG;
typedef unsigned long long ULONG64; typedef unsigned long long ULONG64;
typedef unsigned long long LARGE_INTEGER; typedef unsigned long long LARGE_INTEGER;
typedef unsigned int UINT32; typedef unsigned int UINT32;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment