Commit cd57c777 authored by Uwe Kleine-König's avatar Uwe Kleine-König

MTD: mxc_nand: make bit fields unsigned to please sparse

This fixes:

	arch/arm/plat-mxc/include/mach/mxc_nand.h:25:14: error: dubious one-bit signed bitfield
	arch/arm/plat-mxc/include/mach/mxc_nand.h:26:17: error: dubious one-bit signed bitfield

While at it make width unsigned, too.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
parent 253ff1fa
...@@ -21,8 +21,8 @@ ...@@ -21,8 +21,8 @@
#define __ASM_ARCH_NAND_H #define __ASM_ARCH_NAND_H
struct mxc_nand_platform_data { struct mxc_nand_platform_data {
int width; /* data bus width in bytes */ unsigned int width; /* data bus width in bytes */
int hw_ecc:1; /* 0 if supress hardware ECC */ unsigned int hw_ecc:1; /* 0 if supress hardware ECC */
int flash_bbt:1; /* set to 1 to use a flash based bbt */ unsigned int flash_bbt:1; /* set to 1 to use a flash based bbt */
}; };
#endif /* __ASM_ARCH_NAND_H */ #endif /* __ASM_ARCH_NAND_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment