We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0359116 commit d1fe076Copy full SHA for d1fe076
drivers/mmc/host/sdhci.c
@@ -111,6 +111,9 @@ void sdhci_dumpregs(struct sdhci_host *host)
111
}
112
113
114
+ if (host->ops->dump_vendor_regs)
115
+ host->ops->dump_vendor_regs(host);
116
+
117
SDHCI_DUMP("============================================\n");
118
119
EXPORT_SYMBOL_GPL(sdhci_dumpregs);
drivers/mmc/host/sdhci.h
@@ -650,6 +650,7 @@ struct sdhci_ops {
650
unsigned int length);
651
void (*request_done)(struct sdhci_host *host,
652
struct mmc_request *mrq);
653
+ void (*dump_vendor_regs)(struct sdhci_host *host);
654
};
655
656
#ifdef CONFIG_MMC_SDHCI_IO_ACCESSORS
0 commit comments