Merge "ipq6018: moving __weak function definition to common file"

This commit is contained in:
Linux Build Service Account 2019-06-10 17:35:39 -07:00 committed by Gerrit - the friendly Code Review server
commit 5eeb0996ee
4 changed files with 4 additions and 12 deletions

View file

@ -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

View file

@ -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_ */

View file

@ -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_ */

View file

@ -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,