فهرست منبع

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc:
  bug in AT91 MCI suspend routines
Linus Torvalds 18 سال پیش
والد
کامیت
af5b14c49a
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      drivers/mmc/host/at91_mci.c

+ 3 - 3
drivers/mmc/host/at91_mci.c

@@ -941,7 +941,7 @@ static int __exit at91_mci_remove(struct platform_device *pdev)
 
 
 	host = mmc_priv(mmc);
 	host = mmc_priv(mmc);
 
 
-	if (host->present != -1) {
+	if (host->board->det_pin) {
 		device_init_wakeup(&pdev->dev, 0);
 		device_init_wakeup(&pdev->dev, 0);
 		free_irq(host->board->det_pin, host);
 		free_irq(host->board->det_pin, host);
 		cancel_delayed_work(&host->mmc->detect);
 		cancel_delayed_work(&host->mmc->detect);
@@ -972,7 +972,7 @@ static int at91_mci_suspend(struct platform_device *pdev, pm_message_t state)
 	struct at91mci_host *host = mmc_priv(mmc);
 	struct at91mci_host *host = mmc_priv(mmc);
 	int ret = 0;
 	int ret = 0;
 
 
-	if (device_may_wakeup(&pdev->dev))
+	if (host->board->det_pin && device_may_wakeup(&pdev->dev))
 		enable_irq_wake(host->board->det_pin);
 		enable_irq_wake(host->board->det_pin);
 
 
 	if (mmc)
 	if (mmc)
@@ -987,7 +987,7 @@ static int at91_mci_resume(struct platform_device *pdev)
 	struct at91mci_host *host = mmc_priv(mmc);
 	struct at91mci_host *host = mmc_priv(mmc);
 	int ret = 0;
 	int ret = 0;
 
 
-	if (device_may_wakeup(&pdev->dev))
+	if (host->board->det_pin && device_may_wakeup(&pdev->dev))
 		disable_irq_wake(host->board->det_pin);
 		disable_irq_wake(host->board->det_pin);
 
 
 	if (mmc)
 	if (mmc)