summaryrefslogtreecommitdiff
path: root/drivers/mmc/pic32_sdhci.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2017-01-13 09:17:21 -0500
committerTom Rini <trini@konsulko.com>2017-01-13 09:17:21 -0500
commit83c2f0b451f1656a25272357aa60f6887d5564df (patch)
treee15fe91cb4664dd1fb9b847e258cd477dd075e87 /drivers/mmc/pic32_sdhci.c
parent70c1e0474a9df2c4493b4e2330cc41d3132b4e90 (diff)
parent0ad178c18af3ed7f5752005a42283c4f95fcd4e3 (diff)
downloadu-boot-imx-83c2f0b451f1656a25272357aa60f6887d5564df.zip
u-boot-imx-83c2f0b451f1656a25272357aa60f6887d5564df.tar.gz
u-boot-imx-83c2f0b451f1656a25272357aa60f6887d5564df.tar.bz2
Merge branch 'master' of http://git.denx.de/u-boot-mmc
Diffstat (limited to 'drivers/mmc/pic32_sdhci.c')
-rw-r--r--drivers/mmc/pic32_sdhci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/pic32_sdhci.c b/drivers/mmc/pic32_sdhci.c
index fd2f5e3..c06364c 100644
--- a/drivers/mmc/pic32_sdhci.c
+++ b/drivers/mmc/pic32_sdhci.c
@@ -15,7 +15,7 @@
DECLARE_GLOBAL_DATA_PTR;
-static int pci32_sdhci_get_cd(struct sdhci_host *host)
+static int pic32_sdhci_get_cd(struct sdhci_host *host)
{
/* PIC32 SDHCI CD errata:
* - set CD_TEST and clear CD_TEST_INS bit
@@ -26,7 +26,7 @@ static int pci32_sdhci_get_cd(struct sdhci_host *host)
}
static const struct sdhci_ops pic32_sdhci_ops = {
- .get_cd = pci32_sdhci_get_cd,
+ .get_cd = pic32_sdhci_get_cd,
};
static int pic32_sdhci_probe(struct udevice *dev)