]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mtd: cfi: don't warn about broken geometry for !CONFIG_MTD
authorArnd Bergmann <arnd@arndb.de>
Tue, 24 Nov 2015 22:09:02 +0000 (23:09 +0100)
committerBrian Norris <computersforpeace@gmail.com>
Mon, 30 Nov 2015 20:36:44 +0000 (12:36 -0800)
The linux/mtd/map.h header file is included by a couple of
platform specific files that are built even when CONFIG_MTD
is disabled, and we always get

 warning "No CONFIG_MTD_MAP_BANK_WIDTH_xx selected. No NOR chip support can work"

in that case. This adds an #ifdef around the pointless warning,
as everything is really fine when we don't build the drivers
anyway.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
include/linux/mtd/map.h

index 366cf77953b55bc737fcded0179df083138b3dbf..58f3ba709adecfb5da07e0b28a399218503763a6 100644 (file)
 #endif
 
 #ifndef map_bankwidth
+#ifdef CONFIG_MTD
 #warning "No CONFIG_MTD_MAP_BANK_WIDTH_xx selected. No NOR chip support can work"
+#endif
 static inline int map_bankwidth(void *map)
 {
        BUG();