aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform/x86
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2021-05-03 17:46:47 +0200
committerHans de Goede <hdegoede@redhat.com>2021-06-16 17:47:49 +0200
commit842631928afff953d78a71fa762c92db1ab77571 (patch)
tree83bcc80bb2bdd1e2baf7d3a10e94430e179255d7 /drivers/platform/x86
parentplatform/x86: dell-wmi-sysman: Make populate_foo_data functions more robust (diff)
downloadlinux-dev-842631928afff953d78a71fa762c92db1ab77571.tar.xz
linux-dev-842631928afff953d78a71fa762c92db1ab77571.zip
platform/x86: intel_cht_int33fe: Correct "displayport" fwnode reference
The Type-C connector on these devices is connected to DP-2 not DP-1, so the reference must be to the DD04 child-node of the GPU, rather then the DD02 child-node. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Link: https://lore.kernel.org/r/20210503154647.142551-10-hdegoede@redhat.com
Diffstat (limited to 'drivers/platform/x86')
-rw-r--r--drivers/platform/x86/intel_cht_int33fe_typec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/platform/x86/intel_cht_int33fe_typec.c b/drivers/platform/x86/intel_cht_int33fe_typec.c
index b61bad9cc8d2..d59544167430 100644
--- a/drivers/platform/x86/intel_cht_int33fe_typec.c
+++ b/drivers/platform/x86/intel_cht_int33fe_typec.c
@@ -168,8 +168,8 @@ static int cht_int33fe_setup_dp(struct cht_int33fe_data *data)
return -ENODEV;
}
- /* Then the DP child device node */
- data->dp = device_get_named_child_node(&pdev->dev, "DD02");
+ /* Then the DP-2 child device node */
+ data->dp = device_get_named_child_node(&pdev->dev, "DD04");
pci_dev_put(pdev);
if (!data->dp)
return -ENODEV;