Staging: bcm: Replace UINT with unsigned int in nvm.h

This patch replaces "UINT" with "unsigned
int" in nvm.h.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Kevin McKinney 2012-12-01 01:15:49 -05:00 committed by Greg Kroah-Hartman
parent 6f98775fe9
commit b5ec04ed75
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@
#define _NVM_H_
typedef struct _FLASH_SECTOR_INFO {
UINT uiSectorSig;
UINT uiSectorSize;
unsigned int uiSectorSig;
unsigned int uiSectorSize;
} FLASH_SECTOR_INFO, *PFLASH_SECTOR_INFO;
typedef struct _FLASH_CS_INFO {