Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1564406 > unrolled thread

[PATCH 1/1] drm/amd/powerplay: fix misspelling in header guard

Started byNicolas Iooss <nicolas.iooss_linux@m4x.org>
First post2017-01-22 14:50 +0100
Last post2017-01-23 22:40 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 1/1] drm/amd/powerplay: fix misspelling in header guard Nicolas Iooss <nicolas.iooss_linux@m4x.org> - 2017-01-22 14:50 +0100
    Re: [PATCH 1/1] drm/amd/powerplay: fix misspelling in header guard Alex Deucher <alexdeucher@gmail.com> - 2017-01-23 22:40 +0100

#1564406 — [PATCH 1/1] drm/amd/powerplay: fix misspelling in header guard

FromNicolas Iooss <nicolas.iooss_linux@m4x.org>
Date2017-01-22 14:50 +0100
Subject[PATCH 1/1] drm/amd/powerplay: fix misspelling in header guard
Message-ID<t2qGS-1o6-19@gated-at.bofh.it>
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>
---
 drivers/gpu/drm/amd/powerplay/hwmgr/smu7_clockpowergating.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_clockpowergating.h b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_clockpowergating.h
index d52a28c343e3..c96ed9ed7eaf 100644
--- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_clockpowergating.h
+++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_clockpowergating.h
@@ -22,7 +22,7 @@
  */
 
 #ifndef _SMU7_CLOCK_POWER_GATING_H_
-#define _SMU7_CLOCK__POWER_GATING_H_
+#define _SMU7_CLOCK_POWER_GATING_H_
 
 #include "smu7_hwmgr.h"
 #include "pp_asicblocks.h"
-- 
2.11.0

[toc] | [next] | [standalone]


#1565320

FromAlex Deucher <alexdeucher@gmail.com>
Date2017-01-23 22:40 +0100
Message-ID<t2Uvf-3jD-9@gated-at.bofh.it>
In reply to#1564406
On Sun, Jan 22, 2017 at 8:47 AM, Nicolas Iooss
<nicolas.iooss_linux@m4x.org> wrote:
> 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>

Applied.  thanks!

Alex

> ---
>  drivers/gpu/drm/amd/powerplay/hwmgr/smu7_clockpowergating.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_clockpowergating.h b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_clockpowergating.h
> index d52a28c343e3..c96ed9ed7eaf 100644
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_clockpowergating.h
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/smu7_clockpowergating.h
> @@ -22,7 +22,7 @@
>   */
>
>  #ifndef _SMU7_CLOCK_POWER_GATING_H_
> -#define _SMU7_CLOCK__POWER_GATING_H_
> +#define _SMU7_CLOCK_POWER_GATING_H_
>
>  #include "smu7_hwmgr.h"
>  #include "pp_asicblocks.h"
> --
> 2.11.0
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web