drm/amdgpu/jpeg: use "*" adjacent to data name
When declaring pointer data, the "*" symbol should be used adjacent to the data name as per the coding standards. This resolves following issues reported by checkpatch script: ERROR: "foo * bar" should be "foo *bar" ERROR: "foo * bar" should be "foo *bar" ERROR: "foo* bar" should be "foo *bar" ERROR: "(foo*)" should be "(foo *)" Signed-off-by: Deepak R Varma <mh12gx2825@gmail.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
58b5a793ff
commit
77f5c7370f
@ -247,7 +247,7 @@ static int jpeg_v2_0_disable_power_gating(struct amdgpu_device *adev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int jpeg_v2_0_enable_power_gating(struct amdgpu_device* adev)
|
||||
static int jpeg_v2_0_enable_power_gating(struct amdgpu_device *adev)
|
||||
{
|
||||
if (adev->pg_flags & AMD_PG_SUPPORT_JPEG) {
|
||||
uint32_t data;
|
||||
@ -274,7 +274,7 @@ static int jpeg_v2_0_enable_power_gating(struct amdgpu_device* adev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void jpeg_v2_0_disable_clock_gating(struct amdgpu_device* adev)
|
||||
static void jpeg_v2_0_disable_clock_gating(struct amdgpu_device *adev)
|
||||
{
|
||||
uint32_t data;
|
||||
|
||||
@ -297,7 +297,7 @@ static void jpeg_v2_0_disable_clock_gating(struct amdgpu_device* adev)
|
||||
WREG32_SOC15(JPEG, 0, mmJPEG_CGC_GATE, data);
|
||||
}
|
||||
|
||||
static void jpeg_v2_0_enable_clock_gating(struct amdgpu_device* adev)
|
||||
static void jpeg_v2_0_enable_clock_gating(struct amdgpu_device *adev)
|
||||
{
|
||||
uint32_t data;
|
||||
|
||||
|
@ -247,7 +247,7 @@ static int jpeg_v2_5_resume(void *handle)
|
||||
return r;
|
||||
}
|
||||
|
||||
static void jpeg_v2_5_disable_clock_gating(struct amdgpu_device* adev, int inst)
|
||||
static void jpeg_v2_5_disable_clock_gating(struct amdgpu_device *adev, int inst)
|
||||
{
|
||||
uint32_t data;
|
||||
|
||||
@ -276,7 +276,7 @@ static void jpeg_v2_5_disable_clock_gating(struct amdgpu_device* adev, int inst)
|
||||
WREG32_SOC15(JPEG, inst, mmJPEG_CGC_CTRL, data);
|
||||
}
|
||||
|
||||
static void jpeg_v2_5_enable_clock_gating(struct amdgpu_device* adev, int inst)
|
||||
static void jpeg_v2_5_enable_clock_gating(struct amdgpu_device *adev, int inst)
|
||||
{
|
||||
uint32_t data;
|
||||
|
||||
|
@ -213,7 +213,7 @@ static int jpeg_v3_0_resume(void *handle)
|
||||
return r;
|
||||
}
|
||||
|
||||
static void jpeg_v3_0_disable_clock_gating(struct amdgpu_device* adev)
|
||||
static void jpeg_v3_0_disable_clock_gating(struct amdgpu_device *adev)
|
||||
{
|
||||
uint32_t data = 0;
|
||||
|
||||
@ -243,7 +243,7 @@ static void jpeg_v3_0_disable_clock_gating(struct amdgpu_device* adev)
|
||||
WREG32_SOC15(JPEG, 0, mmJPEG_CGC_CTRL, data);
|
||||
}
|
||||
|
||||
static void jpeg_v3_0_enable_clock_gating(struct amdgpu_device* adev)
|
||||
static void jpeg_v3_0_enable_clock_gating(struct amdgpu_device *adev)
|
||||
{
|
||||
uint32_t data = 0;
|
||||
|
||||
@ -286,7 +286,7 @@ static int jpeg_v3_0_disable_static_power_gating(struct amdgpu_device *adev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int jpeg_v3_0_enable_static_power_gating(struct amdgpu_device* adev)
|
||||
static int jpeg_v3_0_enable_static_power_gating(struct amdgpu_device *adev)
|
||||
{
|
||||
/* enable anti hang mechanism */
|
||||
WREG32_P(SOC15_REG_OFFSET(JPEG, 0, mmUVD_JPEG_POWER_STATUS),
|
||||
|
Loading…
Reference in New Issue
Block a user