diff options
| author | Lijo Lazar <[email protected]> | 2021-03-24 04:56:28 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2021-04-09 20:46:32 +0000 |
| commit | 928a0fe6889ebc1cc0288b516d4604810ff1e2e7 (patch) | |
| tree | e71ac2af49fa5b89e7db9efe6f98634606b87d09 /drivers/gpu/drm/amd/amdgpu/amdgpu_reset.h | |
| parent | drm/amdgpu: Enable recovery on aldebaran (diff) | |
| download | kernel-928a0fe6889ebc1cc0288b516d4604810ff1e2e7.tar.gz kernel-928a0fe6889ebc1cc0288b516d4604810ff1e2e7.zip | |
drm/amdgpu: Fix build warnings
Fix header guard and make internal functions static. Fixes the below warnings:
drivers/gpu/drm/amd/amdgpu/../amdgpu/amdgpu_reset.h:24:9: warning: '__AMDUGPU_RESET_H__' is used as a header guard here, followed by #define of a different macro [-Wheader-guard]
drivers/gpu/drm/amd/amdgpu/aldebaran.c:110:6: warning: no previous prototype for function 'aldebaran_async_reset' [-Wmissing-prototypes]
drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu13/aldebaran_ppt.c:1435:5: warning: no previous prototype for function 'aldebaran_mode2_reset' [-Wmissing-prototypes]
Signed-off-by: Lijo Lazar <[email protected]>
Reported-by: kernel test robot <[email protected]>
Reviewed-by: Hawking Zhang <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_reset.h')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_reset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_reset.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_reset.h index dc84d871fe72..e00d38d9160a 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_reset.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_reset.h @@ -21,7 +21,7 @@ * */ -#ifndef __AMDUGPU_RESET_H__ +#ifndef __AMDGPU_RESET_H__ #define __AMDGPU_RESET_H__ #include "amdgpu.h" |
