Message ID | 20200321222959.GA1053@SDF.ORG (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drm/dp_mst: make build_clear_payload_id_table return void | expand |
Reviewed-by: Lyude Paul <lyude@redhat.com> I'll go ahead and push it to drm-misc-next, thanks! On Sat, 2020-03-21 at 22:29 +0000, Maya Rashish wrote: > Nothing uses the always-0 return value. > > Signed-off-by: Maya Rashish <coypu@sdf.org> > --- > drivers/gpu/drm/drm_dp_mst_topology.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/drm_dp_mst_topology.c > b/drivers/gpu/drm/drm_dp_mst_topology.c > index 4b255e25e4a1..398da29ba1bd 100644 > --- a/drivers/gpu/drm/drm_dp_mst_topology.c > +++ b/drivers/gpu/drm/drm_dp_mst_topology.c > @@ -1060,13 +1060,12 @@ static void build_link_address(struct > drm_dp_sideband_msg_tx *msg) > drm_dp_encode_sideband_req(&req, msg); > } > > -static int build_clear_payload_id_table(struct drm_dp_sideband_msg_tx *msg) > +static void build_clear_payload_id_table(struct drm_dp_sideband_msg_tx > *msg) > { > struct drm_dp_sideband_msg_req_body req; > > req.req_type = DP_CLEAR_PAYLOAD_ID_TABLE; > drm_dp_encode_sideband_req(&req, msg); > - return 0; > } > > static int build_enum_path_resources(struct drm_dp_sideband_msg_tx *msg,
diff --git a/drivers/gpu/drm/drm_dp_mst_topology.c b/drivers/gpu/drm/drm_dp_mst_topology.c index 4b255e25e4a1..398da29ba1bd 100644 --- a/drivers/gpu/drm/drm_dp_mst_topology.c +++ b/drivers/gpu/drm/drm_dp_mst_topology.c @@ -1060,13 +1060,12 @@ static void build_link_address(struct drm_dp_sideband_msg_tx *msg) drm_dp_encode_sideband_req(&req, msg); } -static int build_clear_payload_id_table(struct drm_dp_sideband_msg_tx *msg) +static void build_clear_payload_id_table(struct drm_dp_sideband_msg_tx *msg) { struct drm_dp_sideband_msg_req_body req; req.req_type = DP_CLEAR_PAYLOAD_ID_TABLE; drm_dp_encode_sideband_req(&req, msg); - return 0; } static int build_enum_path_resources(struct drm_dp_sideband_msg_tx *msg,
Nothing uses the always-0 return value. Signed-off-by: Maya Rashish <coypu@sdf.org> --- drivers/gpu/drm/drm_dp_mst_topology.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)