diff options
author | Clemens Gruber <clemens.gruber@pqgruber.com> | 2016-01-26 16:20:38 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-02-01 17:08:44 -0500 |
commit | aa844fe106bfe7bf8f345822607346f6035af343 (patch) | |
tree | c1bd519185ff5bbe5d64c9b7a3daa0672383c915 /include/mmc.h | |
parent | 4f144a416469c6a29127b0656523ae628ea7cbaf (diff) |
mmc: add missing prototype for mmc_get_env_dev
This is a follow-up patch to e92029c0f4 and adds a prototype for
the weak mmc_get_env_dev function.
Cc: Tom Rini <trini@konsulko.com>
Cc: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'include/mmc.h')
-rw-r--r-- | include/mmc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mmc.h b/include/mmc.h index 465daeb0852..d652c1484ef 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -479,6 +479,7 @@ void board_mmc_power_init(void); int board_mmc_init(bd_t *bis); int cpu_mmc_init(bd_t *bis); int mmc_get_env_addr(struct mmc *mmc, int copy, u32 *env_addr); +int mmc_get_env_dev(void); struct pci_device_id; |