소스 검색

drm/amd/powerplay: fix misspelling in header guard

In smu7_clockpowergating.h, the #ifndef statement which prevents
multiple inclusions of the header file uses _SMU7_CLOCK_POWER_GATING_H_
but the following #define statement uses _SMU7_CLOCK__POWER_GATING_H_.

Signed-off-by: Nicolas Iooss <nicolas.iooss_linux@m4x.org>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Nicolas Iooss 8 년 전
부모
커밋
08f1408c47
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      drivers/gpu/drm/amd/powerplay/hwmgr/smu7_clockpowergating.h

+ 1 - 1
drivers/gpu/drm/amd/powerplay/hwmgr/smu7_clockpowergating.h

@@ -22,7 +22,7 @@
  */
  */
 
 
 #ifndef _SMU7_CLOCK_POWER_GATING_H_
 #ifndef _SMU7_CLOCK_POWER_GATING_H_
-#define _SMU7_CLOCK__POWER_GATING_H_
+#define _SMU7_CLOCK_POWER_GATING_H_
 
 
 #include "smu7_hwmgr.h"
 #include "smu7_hwmgr.h"
 #include "pp_asicblocks.h"
 #include "pp_asicblocks.h"