The patch titled MTD NAND: Fix ams-delta after core conversion has been removed from the -mm tree. Its filename is mtd-nand-fix-ams-delta-after-core-conversion.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: MTD NAND: Fix ams-delta after core conversion From: Jonathan McDowell <noodles@xxxxxxxx> The recent hwctrl core conversion for MTD NAND devices broke the Amstrad Delta driver. This fixes it up and uses the existing control line defines rather than unclear magic numbers. Signed-off-by: Jonathan McDowell <noodles@xxxxxxxx> Acked-by: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/mtd/nand/ams-delta.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff -puN drivers/mtd/nand/ams-delta.c~mtd-nand-fix-ams-delta-after-core-conversion drivers/mtd/nand/ams-delta.c --- a/drivers/mtd/nand/ams-delta.c~mtd-nand-fix-ams-delta-after-core-conversion +++ a/drivers/mtd/nand/ams-delta.c @@ -130,11 +130,13 @@ static void ams_delta_hwcontrol(struct m if (ctrl & NAND_CTRL_CHANGE) { unsigned long bits; - bits = (~ctrl & NAND_NCE) << 2; - bits |= (ctrl & NAND_CLE) << 7; - bits |= (ctrl & NAND_ALE) << 6; - - ams_delta_latch2_write(0xC2, bits); + bits = (~ctrl & NAND_NCE) ? AMS_DELTA_LATCH2_NAND_NCE : 0; + bits |= (ctrl & NAND_CLE) ? AMS_DELTA_LATCH2_NAND_CLE : 0; + bits |= (ctrl & NAND_ALE) ? AMS_DELTA_LATCH2_NAND_ALE : 0; + + ams_delta_latch2_write(AMS_DELTA_LATCH2_NAND_CLE | + AMS_DELTA_LATCH2_NAND_ALE | + AMS_DELTA_LATCH2_NAND_NCE, bits); } if (cmd != NAND_CMD_NONE) _ Patches currently in -mm which might be from noodles@xxxxxxxx are omap1510-serial-fix-for-115200-baud.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html