forked from luck/tmp_suning_uos_patched
mtd: cfi: don't warn about broken geometry for !CONFIG_MTD
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>
This commit is contained in:
parent
f5f92b36fb
commit
fe7579d612
@ -142,7 +142,9 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef map_bankwidth
|
#ifndef map_bankwidth
|
||||||
|
#ifdef CONFIG_MTD
|
||||||
#warning "No CONFIG_MTD_MAP_BANK_WIDTH_xx selected. No NOR chip support can work"
|
#warning "No CONFIG_MTD_MAP_BANK_WIDTH_xx selected. No NOR chip support can work"
|
||||||
|
#endif
|
||||||
static inline int map_bankwidth(void *map)
|
static inline int map_bankwidth(void *map)
|
||||||
{
|
{
|
||||||
BUG();
|
BUG();
|
||||||
|
Loading…
Reference in New Issue
Block a user