summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/brcmnand
diff options
context:
space:
mode:
authorAxel Lin2015-08-06 06:29:37 +0200
committerBrian Norris2015-08-08 01:17:43 +0200
commitddb2c42b677eb2883e532f0928e445fc205d0019 (patch)
treea4bde61171b83fb1167125b6d2677750600f66f6 /drivers/mtd/nand/brcmnand
parentmtd: spi-nor: fsl-quadspi: fix unsupported cmd when run flash_erase (diff)
downloadkernel-qcow2-linux-ddb2c42b677eb2883e532f0928e445fc205d0019.tar.gz
kernel-qcow2-linux-ddb2c42b677eb2883e532f0928e445fc205d0019.tar.xz
kernel-qcow2-linux-ddb2c42b677eb2883e532f0928e445fc205d0019.zip
mtd: brcmnand: Fix misuse of IS_ENABLED
While IS_ENABLED() is perfectly fine for CONFIG_* symbols, it is not for other symbols such as __BIG_ENDIAN that is provided directly by the compiler. Switch to use CONFIG_CPU_BIG_ENDIAN instead of __BIG_ENDIAN. Fixes: 27c5b17cd1b1 ("mtd: nand: add NAND driver "library" for Broadcom STB NAND controller") Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/nand/brcmnand')
-rw-r--r--drivers/mtd/nand/brcmnand/brcmnand.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/brcmnand/brcmnand.h b/drivers/mtd/nand/brcmnand/brcmnand.h
index a20c73630b7b..169f99e38a26 100644
--- a/drivers/mtd/nand/brcmnand/brcmnand.h
+++ b/drivers/mtd/nand/brcmnand/brcmnand.h
@@ -50,7 +50,7 @@ static inline u32 brcmnand_readl(void __iomem *addr)
* Other architectures (e.g., ARM) either do not support big endian, or
* else leave I/O in little endian mode.
*/
- if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(__BIG_ENDIAN))
+ if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN))
return __raw_readl(addr);
else
return readl_relaxed(addr);
@@ -59,7 +59,7 @@ static inline u32 brcmnand_readl(void __iomem *addr)
static inline void brcmnand_writel(u32 val, void __iomem *addr)
{
/* See brcmnand_readl() comments */
- if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(__BIG_ENDIAN))
+ if (IS_ENABLED(CONFIG_MIPS) && IS_ENABLED(CONFIG_CPU_BIG_ENDIAN))
__raw_writel(val, addr);
else
writel_relaxed(val, addr);