diff options
author | Tom Rini <trini@ti.com> | 2013-12-10 09:33:13 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-12-10 09:33:13 -0500 |
commit | e1e3de79515b95712a41f52c86a0181530f2fc03 (patch) | |
tree | e41ab8c6797adcfde2f468d8ced1768c61f66bda /include | |
parent | 76a8265b4f54d1b9cd2b70efb46dcdeaa5d20bfb (diff) | |
parent | adebb98ba12008021e75a2881deb424db0184770 (diff) | |
download | u-boot-imx-e1e3de79515b95712a41f52c86a0181530f2fc03.zip u-boot-imx-e1e3de79515b95712a41f52c86a0181530f2fc03.tar.gz u-boot-imx-e1e3de79515b95712a41f52c86a0181530f2fc03.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-mmc
Diffstat (limited to 'include')
-rw-r--r-- | include/dwmmc.h | 1 | ||||
-rw-r--r-- | include/faraday/ftsdc021.h | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/include/dwmmc.h b/include/dwmmc.h index 6c91143..a02dd67 100644 --- a/include/dwmmc.h +++ b/include/dwmmc.h @@ -141,6 +141,7 @@ struct dwmci_host { struct mmc *mmc; void (*clksel)(struct dwmci_host *host); + void (*board_init)(struct dwmci_host *host); unsigned int (*get_mmc_clk)(int dev_index); }; diff --git a/include/faraday/ftsdc021.h b/include/faraday/ftsdc021.h new file mode 100644 index 0000000..de8e250 --- /dev/null +++ b/include/faraday/ftsdc021.h @@ -0,0 +1,13 @@ +/* + * (C) Copyright 2013 Faraday Technology + * Dante Su <dantesu@faraday-tech.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __FTSDC021_H +#define __FTSDC021_H + +int ftsdc021_sdhci_init(u32 regbase); + +#endif /* __FTSDC021_H */ |