From: Kevin McKinney Date: Sat, 1 Dec 2012 06:15:49 +0000 (-0500) Subject: Staging: bcm: Replace UINT with unsigned int in nvm.h X-Git-Tag: v3.12-rc1~1406^2~714 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b5ec04ed75a5ffee36611aac58936f33db41ba92;p=kernel%2Fkernel-generic.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/bcm/nvm.h b/drivers/staging/bcm/nvm.h index a4f329c..9a45df1 100644 --- a/drivers/staging/bcm/nvm.h +++ b/drivers/staging/bcm/nvm.h @@ -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 {