[Public] Reviewed-by: Guchun Chen <guchun.chen@xxxxxxx> Regards, Guchun -----Original Message----- From: amd-gfx <amd-gfx-bounces@xxxxxxxxxxxxxxxxxxxxx> On Behalf Of Luben Tuikov Sent: Friday, January 21, 2022 7:52 AM To: amd-gfx@xxxxxxxxxxxxxxxxxxxxx Cc: Deucher, Alexander <Alexander.Deucher@xxxxxxx>; Tuikov, Luben <Luben.Tuikov@xxxxxxx>; Russell, Kent <Kent.Russell@xxxxxxx>; Liu, Shaoyun <Shaoyun.Liu@xxxxxxx> Subject: [PATCH] drm/amdgpu: Fix kernel compilation; style Problem: drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c: In function ‘is_fru_eeprom_supported’: drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c:47:3: error: expected ‘)’ before ‘return’ 47 | return false; | ^~~~~~ drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c:46:5: note: to match this ‘(’ 46 | if (amdgpu_sriov_vf(adev) | ^ Fix kernel compilation: if (amdgpu_sriov_vf(adev) return false; missing closing right parenthesis for the "if". Fix style: /* The i2c access is blocked on VF * TODO: Need other way to get the info */ Has white space after the closing */. Cc: Alex Deucher <Alexander.Deucher@xxxxxxx> Cc: shaoyunl <shaoyun.liu@xxxxxxx> Cc: Kent Russell <kent.russell@xxxxxxx> Fixes: 824c2051039dfc ("drm/amdgpu: Disable FRU EEPROM access for SRIOV") Signed-off-by: Luben Tuikov <luben.tuikov@xxxxxxx> --- drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c index 0548e279cc9fc4..60e7e637eaa33d 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c @@ -42,8 +42,8 @@ static bool is_fru_eeprom_supported(struct amdgpu_device *adev) /* The i2c access is blocked on VF * TODO: Need other way to get the info - */ - if (amdgpu_sriov_vf(adev) + */ + if (amdgpu_sriov_vf(adev)) return false; /* VBIOS is of the format ###-DXXXYY-##. For SKU identification, base-commit: 2e8e13b0a6794f3ddae0ddcd13eedb64de94f0fd -- 2.34.0