diff options
author | Kevin McKinney <klmckinney1@gmail.com> | 2012-11-22 14:48:34 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-26 16:05:11 -0800 |
commit | 15b18b465c1cb78f20efcbfabaf51f8940eaf2ab (patch) | |
tree | 1093f0ec0734dd001c975d2db4f1a2542b12e9f0 /drivers/staging | |
parent | 0b512e49e1632925e97ee9f4b56bab8ff373dc02 (diff) | |
download | linux-15b18b465c1cb78f20efcbfabaf51f8940eaf2ab.tar.bz2 |
Staging: bcm: Replace ULONG64 with unsigned long long in Ioctl.h
This patch replace "ULONG64" with "unsigned
long long" in Ioctl.h
Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/bcm/Ioctl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/bcm/Ioctl.h b/drivers/staging/bcm/Ioctl.h index e6d2d599208a..aa3047809276 100644 --- a/drivers/staging/bcm/Ioctl.h +++ b/drivers/staging/bcm/Ioctl.h @@ -209,7 +209,7 @@ typedef struct _FLASH2X_BITMAP { } FLASH2X_BITMAP, *PFLASH2X_BITMAP; typedef struct _ST_TIME_ELAPSED_ { - ULONG64 ul64TimeElapsedSinceNetEntry; + unsigned long long ul64TimeElapsedSinceNetEntry; UINT32 uiReserved[4]; } ST_TIME_ELAPSED, *PST_TIME_ELAPSED; |