Loading drivers/mmc/host/sdhci.c +6 −6 Original line number Original line Diff line number Diff line Loading @@ -933,9 +933,9 @@ static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask) BUG_ON(intmask == 0); BUG_ON(intmask == 0); if (!host->cmd) { if (!host->cmd) { printk(KERN_ERR "%s: Got command interrupt even though no " printk(KERN_ERR "%s: Got command interrupt 0x%08x even " "command operation was in progress.\n", "though no command operation was in progress.\n", mmc_hostname(host->mmc)); mmc_hostname(host->mmc), (unsigned)intmask); sdhci_dumpregs(host); sdhci_dumpregs(host); return; return; } } Loading Loading @@ -965,9 +965,9 @@ static void sdhci_data_irq(struct sdhci_host *host, u32 intmask) if (intmask & SDHCI_INT_DATA_END) if (intmask & SDHCI_INT_DATA_END) return; return; printk(KERN_ERR "%s: Got data interrupt even though no " printk(KERN_ERR "%s: Got data interrupt 0x%08x even " "data operation was in progress.\n", "though no data operation was in progress.\n", mmc_hostname(host->mmc)); mmc_hostname(host->mmc), (unsigned)intmask); sdhci_dumpregs(host); sdhci_dumpregs(host); return; return; Loading Loading
drivers/mmc/host/sdhci.c +6 −6 Original line number Original line Diff line number Diff line Loading @@ -933,9 +933,9 @@ static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask) BUG_ON(intmask == 0); BUG_ON(intmask == 0); if (!host->cmd) { if (!host->cmd) { printk(KERN_ERR "%s: Got command interrupt even though no " printk(KERN_ERR "%s: Got command interrupt 0x%08x even " "command operation was in progress.\n", "though no command operation was in progress.\n", mmc_hostname(host->mmc)); mmc_hostname(host->mmc), (unsigned)intmask); sdhci_dumpregs(host); sdhci_dumpregs(host); return; return; } } Loading Loading @@ -965,9 +965,9 @@ static void sdhci_data_irq(struct sdhci_host *host, u32 intmask) if (intmask & SDHCI_INT_DATA_END) if (intmask & SDHCI_INT_DATA_END) return; return; printk(KERN_ERR "%s: Got data interrupt even though no " printk(KERN_ERR "%s: Got data interrupt 0x%08x even " "data operation was in progress.\n", "though no data operation was in progress.\n", mmc_hostname(host->mmc)); mmc_hostname(host->mmc), (unsigned)intmask); sdhci_dumpregs(host); sdhci_dumpregs(host); return; return; Loading