Hi David, Today's linux-next merge of the mtd tree got a conflict in drivers/mtd/nand/mxc_nand.c between commit 8541c1180a355c4da283fc6b03a92c0233823c1b ("mtd: MXC NAND driver fixes (v5)") from Linus' tree and commit ccd93854d44710adaa02cecf0ef5f24ab383dd20 ("[MTD] Remove mtd-> {suspend,resume} calls from board drivers") from the mtd tree. I fixed it up (see below) and can carry the fix for a while. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc drivers/mtd/nand/mxc_nand.c index 40c2608,65040de..0000000 --- a/drivers/mtd/nand/mxc_nand.c +++ b/drivers/mtd/nand/mxc_nand.c @@@ -1021,11 -1015,9 +1021,10 @@@ static int mxcnd_suspend(struct platfor int ret = 0; DEBUG(MTD_DEBUG_LEVEL0, "MXC_ND : NAND suspend\n"); - - /* Disable the NFC clock */ - clk_disable(nfc_clk); /* FIXME */ + if (mtd) { - ret = mtd->suspend(mtd); + /* Disable the NFC clock */ + clk_disable(host->clk); + } return ret; } @@@ -1038,12 -1028,8 +1037,11 @@@ static int mxcnd_resume(struct platform int ret = 0; DEBUG(MTD_DEBUG_LEVEL0, "MXC_ND : NAND resume\n"); - /* Enable the NFC clock */ - clk_enable(nfc_clk); /* FIXME */ + + if (mtd) { + /* Enable the NFC clock */ + clk_enable(host->clk); - mtd->resume(mtd); + } return ret; } -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html