From: Russell King Date: Wed, 15 Feb 2012 11:48:34 +0000 (+0000) Subject: mtd: fix 'Flash device refused suspend due to active operation' message X-Git-Tag: upstream/snapshot3+hdmi~7793^2~64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=342d3a93e2b191b0ada07ba7c48380181c9214e8;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git mtd: fix 'Flash device refused suspend due to active operation' message While debugging on SA11x0, the following message was observed: "Flash device refused suspend due to active operation (state 20)" Signed-off-by: Russell King Signed-off-by: Artem Bityutskiy Signed-off-by: David Woodhouse --- diff --git a/drivers/mtd/chips/cfi_cmdset_0001.c b/drivers/mtd/chips/cfi_cmdset_0001.c index 2d96690..920b474 100644 --- a/drivers/mtd/chips/cfi_cmdset_0001.c +++ b/drivers/mtd/chips/cfi_cmdset_0001.c @@ -2479,7 +2479,7 @@ static int cfi_intelext_suspend(struct mtd_info *mtd) allowed to. Or should we return -EAGAIN, because the upper layers ought to have already shut down anything which was using the device anyway? The latter for now. */ - printk(KERN_NOTICE "Flash device refused suspend due to active operation (state %d)\n", chip->oldstate); + printk(KERN_NOTICE "Flash device refused suspend due to active operation (state %d)\n", chip->state); ret = -EAGAIN; case FL_PM_SUSPENDED: break;