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 f421865 commit 7962302Copy full SHA for 7962302
drivers/mmc/host/sdhci.c
@@ -87,6 +87,13 @@ static void sdhci_dumpregs(struct sdhci_host *host)
87
pr_err(DRIVER_NAME ": Cmd: 0x%08x | Max curr: 0x%08x\n",
88
sdhci_readw(host, SDHCI_COMMAND),
89
sdhci_readl(host, SDHCI_MAX_CURRENT));
90
+ pr_err(DRIVER_NAME ": Resp[0]: 0x%08x | Resp[1]: 0x%08x\n",
91
+ sdhci_readl(host, SDHCI_RESPONSE),
92
+ sdhci_readl(host, SDHCI_RESPONSE + 4));
93
+ pr_err(DRIVER_NAME ": Resp[2]: 0x%08x | Resp[3]: 0x%08x\n",
94
+ sdhci_readl(host, SDHCI_RESPONSE + 8),
95
+ sdhci_readl(host, SDHCI_RESPONSE + 12));
96
+
97
pr_err(DRIVER_NAME ": Host ctl2: 0x%08x\n",
98
sdhci_readw(host, SDHCI_HOST_CONTROL2));
99
0 commit comments