mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-01-28 01:47:24 +01:00
Merge "ipq6018: moving __weak function definition to common file"
This commit is contained in:
commit
5eeb0996ee
4 changed files with 4 additions and 12 deletions
|
|
@ -177,8 +177,4 @@ unsigned int get_board_index(unsigned int machid);
|
|||
void reset_crashdump(void);
|
||||
void ipq_fdt_fixup_socinfo(void *blob);
|
||||
|
||||
__weak void mmc_iopad_config(struct sdhci_host *host)
|
||||
{
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -223,8 +223,4 @@ void ipq_fdt_fixup_socinfo(void *blob);
|
|||
void board_pci_init(int id);
|
||||
void board_pcie_clock_init(int id);
|
||||
|
||||
__weak void mmc_iopad_config(struct sdhci_host *host)
|
||||
{
|
||||
return;
|
||||
}
|
||||
#endif /* _IPQ806X_H_ */
|
||||
|
|
|
|||
|
|
@ -308,8 +308,4 @@ __weak int ipq_get_tz_version(char *version_name, int buf_size)
|
|||
return 1;
|
||||
}
|
||||
|
||||
__weak void mmc_iopad_config(struct sdhci_host *host)
|
||||
{
|
||||
return;
|
||||
}
|
||||
#endif /* _IPQ807X_H_ */
|
||||
|
|
|
|||
|
|
@ -600,6 +600,10 @@ static int sdhci_init(struct mmc *mmc)
|
|||
return 0;
|
||||
}
|
||||
|
||||
__weak void mmc_iopad_config(struct sdhci_host *host)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
static const struct mmc_ops sdhci_ops = {
|
||||
.send_cmd = sdhci_send_command,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue