Commit 1b15b1f5 authored by Fabio Estevam's avatar Fabio Estevam Committed by Brian Norris
Browse files

mtd: mxc_nand: Remove bit-or operation with zero



Doing a bit-or operation with zero is pointless.

Remove this unneeded bit-or.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
parent 20625dfe
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1067,8 +1067,7 @@ static void preset_v3(struct mtd_info *mtd)

	/* Blocks to be unlocked */
	for (i = 0; i < NAND_MAX_CHIPS; i++)
		writel(0x0 |	(0xffff << 16),
				NFC_V3_WRPROT_UNLOCK_BLK_ADD0 + (i << 2));
		writel(0xffff << 16, NFC_V3_WRPROT_UNLOCK_BLK_ADD0 + (i << 2));

	writel(0, NFC_V3_IPC);