diff options
| author | 2020-11-20 18:02:26 -0800 | |
|---|---|---|
| committer | 2020-12-09 19:10:21 +0100 | |
| commit | 04f63c213b671d89db35f4239f57fa1edeb736a8 (patch) | |
| tree | f8208b9cfd0044557d8f18f7e2f7a171c488e615 /drivers | |
| parent | device property: Add fwnode_is_ancestor_of() and fwnode_get_next_parent_dev() (diff) | |
| download | linux-dev-04f63c213b671d89db35f4239f57fa1edeb736a8.tar.xz linux-dev-04f63c213b671d89db35f4239f57fa1edeb736a8.zip | |
driver core: Redefine the meaning of fwnode_operations.add_links()
Change the meaning of fwnode_operations.add_links() to just create
fwnode links by parsing the properties of a given fwnode.
This patch doesn't actually make any code changes. To keeps things more
digestable, the actual functional changes come in later patches in this
series.
Signed-off-by: Saravana Kannan <saravanak@google.com>
Link: https://lore.kernel.org/r/20201121020232.908850-12-saravanak@google.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/firmware/efi/efi-init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/efi/efi-init.c b/drivers/firmware/efi/efi-init.c index b148f1459fb3..65bb97c391b0 100644 --- a/drivers/firmware/efi/efi-init.c +++ b/drivers/firmware/efi/efi-init.c @@ -316,7 +316,7 @@ static struct device_node *find_pci_overlap_node(void) * resource reservation conflict on the memory window that the efifb * framebuffer steals from the PCIe host bridge. */ -static int efifb_add_links(const struct fwnode_handle *fwnode, +static int efifb_add_links(struct fwnode_handle *fwnode, struct device *dev) { struct device_node *sup_np; |
