Skip to content

Commit cd49cca

Browse files
author
Abhinav Kumar
committed
drm/msm/dp: fix typo in dp_display_handle_port_status_changed()
Fix the typo in the name of dp_display_handle_port_status_changed(). Fixes: c58eb1b ("drm/msm/dp: fix connect/disconnect handled at irq_hpd") Signed-off-by: Abhinav Kumar <[email protected]> Reviewed-by: Dmitry Baryshkov <[email protected]> Patchwork: https://patchwork.freedesktop.org/patch/581746/ Link: https://lore.kernel.org/r/[email protected]
1 parent 8844f46 commit cd49cca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/msm/dp/dp_display.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ static void dp_display_handle_video_request(struct dp_display_private *dp)
468468
}
469469
}
470470

471-
static int dp_display_handle_port_ststus_changed(struct dp_display_private *dp)
471+
static int dp_display_handle_port_status_changed(struct dp_display_private *dp)
472472
{
473473
int rc = 0;
474474

@@ -525,7 +525,7 @@ static int dp_display_usbpd_attention_cb(struct device *dev)
525525
drm_dbg_dp(dp->drm_dev, "hpd_state=%d sink_request=%d\n",
526526
dp->hpd_state, sink_request);
527527
if (sink_request & DS_PORT_STATUS_CHANGED)
528-
rc = dp_display_handle_port_ststus_changed(dp);
528+
rc = dp_display_handle_port_status_changed(dp);
529529
else
530530
rc = dp_display_handle_irq_hpd(dp);
531531
}

0 commit comments

Comments
 (0)