From: Lyude Paul Date: Tue, 3 Sep 2019 20:45:49 +0000 (-0400) Subject: drm/dp_mst: Constify guid in drm_dp_get_mst_branch_by_guid() X-Git-Tag: v5.10.7~2352^2~6^2~1268 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fde61a7a7df46ce8206c8a7b3aa181c330113184;p=platform%2Fkernel%2Flinux-rpi.git drm/dp_mst: Constify guid in drm_dp_get_mst_branch_by_guid() And it's helper, we'll be using this in just a moment. Cc: Juston Li Cc: Imre Deak Cc: Ville Syrjälä Cc: Harry Wentland Cc: Daniel Vetter Signed-off-by: Lyude Paul Reviewed-by: Dave Airlie Link: https://patchwork.freedesktop.org/patch/msgid/20190903204645.25487-12-lyude@redhat.com --- diff --git a/drivers/gpu/drm/drm_dp_mst_topology.c b/drivers/gpu/drm/drm_dp_mst_topology.c index 22b4dc8..3309808 100644 --- a/drivers/gpu/drm/drm_dp_mst_topology.c +++ b/drivers/gpu/drm/drm_dp_mst_topology.c @@ -2086,7 +2086,7 @@ out: static struct drm_dp_mst_branch *get_mst_branch_device_by_guid_helper( struct drm_dp_mst_branch *mstb, - uint8_t *guid) + const uint8_t *guid) { struct drm_dp_mst_branch *found_mstb; struct drm_dp_mst_port *port; @@ -2110,7 +2110,7 @@ static struct drm_dp_mst_branch *get_mst_branch_device_by_guid_helper( static struct drm_dp_mst_branch * drm_dp_get_mst_branch_device_by_guid(struct drm_dp_mst_topology_mgr *mgr, - uint8_t *guid) + const uint8_t *guid) { struct drm_dp_mst_branch *mstb; int ret;