Commit 066ec1dd authored by Alexander Shiyan's avatar Alexander Shiyan Committed by Samuel Ortiz

of: Add stub of_get_parent for non-OF builds

Fixes build error on x86_64 allmodconfig, introduced by commit
5ab3a89a ("mfd: syscon: Add non-DT support").

drivers/regulator/anatop-regulator.c: In function 'anatop_regulator_probe':
drivers/regulator/anatop-regulator.c:134:2: error: implicit declaration of function 'of_get_parent' [-Werror=implicit-function-declaration]
Signed-off-by: default avatarAlexander Shiyan <shc_work@mail.ru>
Acked-by: default avatarRob Herring <rob.herring@calxeda.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 651da3d4
...@@ -353,6 +353,11 @@ static inline struct device_node *of_find_node_by_name(struct device_node *from, ...@@ -353,6 +353,11 @@ static inline struct device_node *of_find_node_by_name(struct device_node *from,
return NULL; return NULL;
} }
static inline struct device_node *of_get_parent(const struct device_node *node)
{
return NULL;
}
static inline bool of_have_populated_dt(void) static inline bool of_have_populated_dt(void)
{ {
return false; return false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment