]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mmc: card.h: Use NULL instead of 0 for END_FIXUP
authorFabio Estevam <fabio.estevam@freescale.com>
Sat, 5 Apr 2014 01:42:48 +0000 (22:42 -0300)
committerChris Ball <chris@printf.net>
Tue, 22 Apr 2014 11:06:38 +0000 (07:06 -0400)
Fix the following sparse warnings:

drivers/mmc/card/block.c:2421:9: warning: Using plain integer as NULL pointer

drivers/mmc/core/quirks.c:69:9: warning: Using plain integer as NULL pointer

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Chris Ball <chris@printf.net>
include/linux/mmc/card.h

index b73027298b3a68e71f92b2716ac6952cfc8a1091..aa7e57f60fb26094a003069a526da1c6fb4498e6 100644 (file)
@@ -353,7 +353,7 @@ struct mmc_fixup {
 #define CID_OEMID_ANY ((unsigned short) -1)
 #define CID_NAME_ANY (NULL)
 
-#define END_FIXUP { 0 }
+#define END_FIXUP { NULL }
 
 #define _FIXUP_EXT(_name, _manfid, _oemid, _rev_start, _rev_end,       \
                   _cis_vendor, _cis_device,                            \