mirror of
https://github.com/Fishwaldo/build.git
synced 2025-04-01 03:31:36 +00:00
* fix kernelcrash with config_of_overlay combined with isp1 camera driver,based on:30a8401c2f
* add basic dtbo infrastucture * set ov5647 (RPi cam rev 1.3) as default, imx219 (RPi cam V2.1) outputs a blurry green videostream at the moment * maybe fix powering for camera * adjust mainline dtbo patch to bsp kernel * got you! little.. dtbo's are properly built and applied during boot. * add imx219 overlay to switch between cameras & add ae/awb fix for ov 5647 from asus tinker repo * patch imx219 up to96396323fa
* bring back wireguard, otherwise igor gets grumpy :D * fix camera status
13 lines
410 B
Diff
13 lines
410 B
Diff
diff --git a/drivers/of/property.c b/drivers/of/property.c
|
|
index 2c201e2c..ae79a6f8 100644
|
|
--- a/drivers/of/property.c
|
|
+++ b/drivers/of/property.c
|
|
@@ -900,7 +900,7 @@ of_fwnode_graph_get_port_parent(struct fwnode_handle *fwnode)
|
|
struct device_node *np;
|
|
|
|
/* Get the parent of the port */
|
|
- np = of_get_next_parent(to_of_node(fwnode));
|
|
+ np = of_get_parent(to_of_node(fwnode));
|
|
if (!np)
|
|
return NULL;
|
|
|