Skip to content

Commit

Permalink
Staging: bcm: Replace UINT with unsigned int in nvm.h
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Jan 7, 2013
1 parent 6f98775 commit b5ec04e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/bcm/nvm.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit b5ec04e

Please sign in to comment.