diff options
| author | Patrice Chotard <patrice.chotard@st.com> | 2017-10-23 10:57:30 +0200 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2017-11-17 07:44:13 -0500 |
| commit | cb0060e8360fe75c98b2c21740fde80a8e1f62ec (patch) | |
| tree | 5bd5ba845b6541589a9cb68b860b88bcc96db01a /drivers/mmc/arm_pl180_mmci.h | |
| parent | 39e709611df05505ada013a37c5254b4c671b847 (diff) | |
mmc: arm_pl180_mmci: update arm_pl180_mmci_init() prototype
Update arm_pl180_mmci_init() prototype by adding struct mmc**
param. This is needed before converting this driver to driver model
in order to use arm_pl180_mmci_init() in driver model and in none
driver model implementation
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Diffstat (limited to 'drivers/mmc/arm_pl180_mmci.h')
| -rw-r--r-- | drivers/mmc/arm_pl180_mmci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/arm_pl180_mmci.h b/drivers/mmc/arm_pl180_mmci.h index f23bd391eed..6e232f7df26 100644 --- a/drivers/mmc/arm_pl180_mmci.h +++ b/drivers/mmc/arm_pl180_mmci.h @@ -190,6 +190,6 @@ struct pl180_mmc_host { struct mmc_config cfg; }; -int arm_pl180_mmci_init(struct pl180_mmc_host *); +int arm_pl180_mmci_init(struct pl180_mmc_host *host, struct mmc **mmc); #endif |
