Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[MTD] NAND: Fix typo in mtd/nand/ts7250.c

I was unable to compile ts7250.c after your refactor commit,
it's a typo probably.

-- ynezz

From: Petr Stetiar <ynezz@true.cz>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

authored by

Petr Stetiar and committed by
David Woodhouse
0e4ced59 04510dee

+1 -1
+1 -1
drivers/mtd/nand/ts7250.c
··· 97 97 unsigned long addr = TS72XX_NAND_CONTROL_VIRT_BASE; 98 98 unsigned char bits; 99 99 100 - bits = (ctrl & NAND_CNE) << 2; 100 + bits = (ctrl & NAND_NCE) << 2; 101 101 bits |= ctrl & NAND_CLE; 102 102 bits |= (ctrl & NAND_ALE) >> 2; 103 103