-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
linux-pinephonepro: Update to 5.16.0-rc6
Update to latest 5.16.0-rc6 with patches from Mobian. Signed-off-by: Herman van Hazendonk <[email protected]>
- Loading branch information
Showing
84 changed files
with
16,966 additions
and
5 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
.../linux/linux-pinephonepro/0001-base-property-Swap-order-of-search-for-connection-to.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
From: Ondrej Jirman <[email protected]> | ||
Date: Mon, 15 Nov 2021 04:09:50 +0100 | ||
Subject: [PATCH 01/36] base: property: Swap order of search for connection to | ||
"devcon, graph" | ||
|
||
This avoids confusing error in kernel log, when using devcon matching | ||
in DT. Example: | ||
|
||
"OF: graph: no port node found in /i2c@ff3d0000/typec-portc@22" | ||
|
||
This suggest there's some error because graph based search failed, | ||
but there is no error, because devcon based matching succeeds. | ||
|
||
Signed-off-by: Ondrej Jirman <[email protected]> | ||
--- | ||
drivers/base/property.c | 4 ++-- | ||
1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/drivers/base/property.c b/drivers/base/property.c | ||
index f1f35b4..68cb945 100644 | ||
--- a/drivers/base/property.c | ||
+++ b/drivers/base/property.c | ||
@@ -1261,10 +1261,10 @@ void *fwnode_connection_find_match(struct fwnode_handle *fwnode, | ||
if (!fwnode || !match) | ||
return NULL; | ||
|
||
- ret = fwnode_graph_devcon_match(fwnode, con_id, data, match); | ||
+ ret = fwnode_devcon_match(fwnode, con_id, data, match); | ||
if (ret) | ||
return ret; | ||
|
||
- return fwnode_devcon_match(fwnode, con_id, data, match); | ||
+ return fwnode_graph_devcon_match(fwnode, con_id, data, match); | ||
} | ||
EXPORT_SYMBOL_GPL(fwnode_connection_find_match); |
Oops, something went wrong.