Message ID | 20200224103120.zrvgqaokmoehs5y7@kili.mountain (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drm/amdgpu/display: clean up some indenting | expand |
On Mon, Feb 24, 2020 at 5:31 AM Dan Carpenter <dan.carpenter@oracle.com> wrote: > > These lines were accidentally indented 4 spaces more than they should > be. > > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Applied. thanks! Alex > --- > drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c > index 4cb3eb7c6745..408405d9f30c 100644 > --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c > +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c > @@ -2138,10 +2138,10 @@ static void handle_hpd_rx_irq(void *param) > } > } > #ifdef CONFIG_DRM_AMD_DC_HDCP > - if (hpd_irq_data.bytes.device_service_irq.bits.CP_IRQ) { > - if (adev->dm.hdcp_workqueue) > - hdcp_handle_cpirq(adev->dm.hdcp_workqueue, aconnector->base.index); > - } > + if (hpd_irq_data.bytes.device_service_irq.bits.CP_IRQ) { > + if (adev->dm.hdcp_workqueue) > + hdcp_handle_cpirq(adev->dm.hdcp_workqueue, aconnector->base.index); > + } > #endif > if ((dc_link->cur_link_settings.lane_count != LANE_COUNT_UNKNOWN) || > (dc_link->type == dc_connection_mst_branch)) > -- > 2.11.0 > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c index 4cb3eb7c6745..408405d9f30c 100644 --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c @@ -2138,10 +2138,10 @@ static void handle_hpd_rx_irq(void *param) } } #ifdef CONFIG_DRM_AMD_DC_HDCP - if (hpd_irq_data.bytes.device_service_irq.bits.CP_IRQ) { - if (adev->dm.hdcp_workqueue) - hdcp_handle_cpirq(adev->dm.hdcp_workqueue, aconnector->base.index); - } + if (hpd_irq_data.bytes.device_service_irq.bits.CP_IRQ) { + if (adev->dm.hdcp_workqueue) + hdcp_handle_cpirq(adev->dm.hdcp_workqueue, aconnector->base.index); + } #endif if ((dc_link->cur_link_settings.lane_count != LANE_COUNT_UNKNOWN) || (dc_link->type == dc_connection_mst_branch))
These lines were accidentally indented 4 spaces more than they should be. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> --- drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)