This patch replaces "UINT" with "unsigned int" in nvm.h, and removes an empty line.
Signed-off-by: Kevin McKinney <[email protected]> --- drivers/staging/bcm/nvm.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/staging/bcm/nvm.h b/drivers/staging/bcm/nvm.h index 8fb6cf6..bcfbb1b 100644 --- a/drivers/staging/bcm/nvm.h +++ b/drivers/staging/bcm/nvm.h @@ -21,9 +21,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 { -- 1.7.9.5 _______________________________________________ devel mailing list [email protected] http://driverdev.linuxdriverproject.org/mailman/listinfo/devel
