mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-11 03:08:00 +07:00
dt: fix twl4030 for non-dt compile on x86
twl4030 still doesn't build correctly for x86 allmodconfig. This fix solves the missing symbol errors. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Benoit Cousson <b-cousson@ti.com>
This commit is contained in:
parent
280ad7fda5
commit
e7cc3aca0f
@ -38,6 +38,7 @@
|
|||||||
#include <linux/of.h>
|
#include <linux/of.h>
|
||||||
#include <linux/of_irq.h>
|
#include <linux/of_irq.h>
|
||||||
#include <linux/of_platform.h>
|
#include <linux/of_platform.h>
|
||||||
|
#include <linux/irq.h>
|
||||||
#include <linux/irqdomain.h>
|
#include <linux/irqdomain.h>
|
||||||
|
|
||||||
#include <linux/regulator/machine.h>
|
#include <linux/regulator/machine.h>
|
||||||
|
@ -94,7 +94,12 @@ extern int of_platform_populate(struct device_node *root,
|
|||||||
const struct of_device_id *matches,
|
const struct of_device_id *matches,
|
||||||
const struct of_dev_auxdata *lookup,
|
const struct of_dev_auxdata *lookup,
|
||||||
struct device *parent);
|
struct device *parent);
|
||||||
#else
|
#endif /* CONFIG_OF_ADDRESS */
|
||||||
|
|
||||||
|
#endif /* CONFIG_OF_DEVICE */
|
||||||
|
|
||||||
|
#if !defined(CONFIG_OF_ADDRESS)
|
||||||
|
struct of_dev_auxdata;
|
||||||
static inline int of_platform_populate(struct device_node *root,
|
static inline int of_platform_populate(struct device_node *root,
|
||||||
const struct of_device_id *matches,
|
const struct of_device_id *matches,
|
||||||
const struct of_dev_auxdata *lookup,
|
const struct of_dev_auxdata *lookup,
|
||||||
@ -104,6 +109,4 @@ static inline int of_platform_populate(struct device_node *root,
|
|||||||
}
|
}
|
||||||
#endif /* !CONFIG_OF_ADDRESS */
|
#endif /* !CONFIG_OF_ADDRESS */
|
||||||
|
|
||||||
#endif /* CONFIG_OF_DEVICE */
|
|
||||||
|
|
||||||
#endif /* _LINUX_OF_PLATFORM_H */
|
#endif /* _LINUX_OF_PLATFORM_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user