lkml.org 
[lkml]   [2015]   [Jun]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] mmc, kernel 4.0.5, SDIO power management error message
On suspend, SDIO (MMC) power management fails and removes a card
("mmc2: card 0001 removed") if any of the card's functions don't support
power management. Then nothing ever resumes it, so the card is lost
forever. With this patch, it will also provide a useful error message
("btsdio mmc2:0001:3: pre_suspend failed (driver has no PM)"). This will
save hours of diagnostic effort for anyone whose SDIO cards disappear on
suspend.

--- drivers/mmc/core/sdio.c.orig 2015-06-06 11:21:22.000000000 -0400
+++ drivers/mmc/core/sdio.c 2015-06-08 09:21:00.000000000 -0400
@@ -918,6 +918,8 @@
const struct dev_pm_ops *pmops = func->dev.driver->pm;
if (!pmops || !pmops->suspend || !pmops->resume) {
/* force removal of entire card in that case */
+ dev_err(&func->dev, "pre_suspend failed "
+ "(driver has no PM)\n");
err = -ENOSYS;
break;
}

\
 
 \ /
  Last update: 2015-06-08 16:21    [W:0.165 / U:0.024 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site