[PATCH] drm/amdgpu: Clean up errors in dce_v10_0.c

Alex Deucher alexdeucher at gmail.com
Mon Aug 7 17:23:36 UTC 2023


Applied.  Thanks!

On Wed, Aug 2, 2023 at 3:04 AM Ran Sun <sunran001 at 208suo.com> wrote:
>
> Fix the following errors reported by checkpatch:
>
> ERROR: that open brace { should be on the previous line
>
> Signed-off-by: Ran Sun <sunran001 at 208suo.com>
> ---
>  drivers/gpu/drm/amd/amdgpu/dce_v10_0.c | 30 +++++++++-----------------
>  1 file changed, 10 insertions(+), 20 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c b/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
> index 9a24ed463abd..584cd5277f92 100644
> --- a/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
> @@ -52,8 +52,7 @@
>  static void dce_v10_0_set_display_funcs(struct amdgpu_device *adev);
>  static void dce_v10_0_set_irq_funcs(struct amdgpu_device *adev);
>
> -static const u32 crtc_offsets[] =
> -{
> +static const u32 crtc_offsets[] = {
>         CRTC0_REGISTER_OFFSET,
>         CRTC1_REGISTER_OFFSET,
>         CRTC2_REGISTER_OFFSET,
> @@ -63,8 +62,7 @@ static const u32 crtc_offsets[] =
>         CRTC6_REGISTER_OFFSET
>  };
>
> -static const u32 hpd_offsets[] =
> -{
> +static const u32 hpd_offsets[] = {
>         HPD0_REGISTER_OFFSET,
>         HPD1_REGISTER_OFFSET,
>         HPD2_REGISTER_OFFSET,
> @@ -121,30 +119,26 @@ static const struct {
>         .hpd = DISP_INTERRUPT_STATUS_CONTINUE5__DC_HPD6_INTERRUPT_MASK
>  } };
>
> -static const u32 golden_settings_tonga_a11[] =
> -{
> +static const u32 golden_settings_tonga_a11[] = {
>         mmDCI_CLK_CNTL, 0x00000080, 0x00000000,
>         mmFBC_DEBUG_COMP, 0x000000f0, 0x00000070,
>         mmFBC_MISC, 0x1f311fff, 0x12300000,
>         mmHDMI_CONTROL, 0x31000111, 0x00000011,
>  };
>
> -static const u32 tonga_mgcg_cgcg_init[] =
> -{
> +static const u32 tonga_mgcg_cgcg_init[] = {
>         mmXDMA_CLOCK_GATING_CNTL, 0xffffffff, 0x00000100,
>         mmXDMA_MEM_POWER_CNTL, 0x00000101, 0x00000000,
>  };
>
> -static const u32 golden_settings_fiji_a10[] =
> -{
> +static const u32 golden_settings_fiji_a10[] = {
>         mmDCI_CLK_CNTL, 0x00000080, 0x00000000,
>         mmFBC_DEBUG_COMP, 0x000000f0, 0x00000070,
>         mmFBC_MISC, 0x1f311fff, 0x12300000,
>         mmHDMI_CONTROL, 0x31000111, 0x00000011,
>  };
>
> -static const u32 fiji_mgcg_cgcg_init[] =
> -{
> +static const u32 fiji_mgcg_cgcg_init[] = {
>         mmXDMA_CLOCK_GATING_CNTL, 0xffffffff, 0x00000100,
>         mmXDMA_MEM_POWER_CNTL, 0x00000101, 0x00000000,
>  };
> @@ -1425,8 +1419,7 @@ static void dce_v10_0_audio_enable(struct amdgpu_device *adev,
>                            enable ? AZALIA_F0_CODEC_PIN_CONTROL_HOT_PLUG_CONTROL__AUDIO_ENABLED_MASK : 0);
>  }
>
> -static const u32 pin_offsets[] =
> -{
> +static const u32 pin_offsets[] = {
>         AUD0_REGISTER_OFFSET,
>         AUD1_REGISTER_OFFSET,
>         AUD2_REGISTER_OFFSET,
> @@ -1811,8 +1804,7 @@ static void dce_v10_0_afmt_fini(struct amdgpu_device *adev)
>         }
>  }
>
> -static const u32 vga_control_regs[6] =
> -{
> +static const u32 vga_control_regs[6] = {
>         mmD1VGA_CONTROL,
>         mmD2VGA_CONTROL,
>         mmD3VGA_CONTROL,
> @@ -3651,8 +3643,7 @@ static void dce_v10_0_set_irq_funcs(struct amdgpu_device *adev)
>         adev->hpd_irq.funcs = &dce_v10_0_hpd_irq_funcs;
>  }
>
> -const struct amdgpu_ip_block_version dce_v10_0_ip_block =
> -{
> +const struct amdgpu_ip_block_version dce_v10_0_ip_block = {
>         .type = AMD_IP_BLOCK_TYPE_DCE,
>         .major = 10,
>         .minor = 0,
> @@ -3660,8 +3651,7 @@ const struct amdgpu_ip_block_version dce_v10_0_ip_block =
>         .funcs = &dce_v10_0_ip_funcs,
>  };
>
> -const struct amdgpu_ip_block_version dce_v10_1_ip_block =
> -{
> +const struct amdgpu_ip_block_version dce_v10_1_ip_block = {
>         .type = AMD_IP_BLOCK_TYPE_DCE,
>         .major = 10,
>         .minor = 1,
> --
> 2.17.1
>


More information about the dri-devel mailing list