From: Uwe Kleine-König Date: Tue, 10 Feb 2015 19:00:00 +0000 (+0100) Subject: mtd: mxc-nand: Warn on unimplemented commands X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=98ebb521096f2d90c3e903ba79412cd92064795b;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git mtd: mxc-nand: Warn on unimplemented commands The PARAM command was long unimplemented and it probably wasn't noticed because chip probing using only the few bytes returned by the READID command are good enough in most cases to determine the chip in use. Still to notice such a shortcoming earlier in the future would be nice in case it's something more vital. Signed-off-by: Uwe Kleine-König Signed-off-by: Brian Norris --- diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c index 0083b4ee4f33..372e0e38f59b 100644 --- a/drivers/mtd/nand/mxc_nand.c +++ b/drivers/mtd/nand/mxc_nand.c @@ -1160,6 +1160,10 @@ static void mxc_nand_command(struct mtd_info *mtd, unsigned command, memcpy32_fromio(host->data_buf, host->main_area0, 512); host->buf_start = 0; break; + default: + WARN_ONCE(1, "Unimplemented command (cmd=%u)\n", + command); + break; } }