linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] x86/boot: remove bogus #include <generated/utsrelease.h>
@ 2017-09-20 15:27 Masahiro Yamada
  2017-10-11 13:00 ` Masahiro Yamada
  2017-10-11 15:25 ` [tip:x86/boot] x86/boot: Remove unnecessary " tip-bot for Masahiro Yamada
  0 siblings, 2 replies; 3+ messages in thread
From: Masahiro Yamada @ 2017-09-20 15:27 UTC (permalink / raw)
  To: x86
  Cc: Masahiro Yamada, H. Peter Anvin, linux-kernel, Thomas Gleixner,
	Ingo Molnar

The <generated/utsrelease.h> defines UTS_RELEASE, but I do not
see any reference to it in arch/x86/boot/header.S .

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 arch/x86/boot/header.S | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/x86/boot/header.S b/arch/x86/boot/header.S
index 1bb08ec..16c516b 100644
--- a/arch/x86/boot/header.S
+++ b/arch/x86/boot/header.S
@@ -16,7 +16,6 @@
  */
 
 #include <asm/segment.h>
-#include <generated/utsrelease.h>
 #include <asm/boot.h>
 #include <asm/page_types.h>
 #include <asm/setup.h>
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] x86/boot: remove bogus #include <generated/utsrelease.h>
  2017-09-20 15:27 [PATCH] x86/boot: remove bogus #include <generated/utsrelease.h> Masahiro Yamada
@ 2017-10-11 13:00 ` Masahiro Yamada
  2017-10-11 15:25 ` [tip:x86/boot] x86/boot: Remove unnecessary " tip-bot for Masahiro Yamada
  1 sibling, 0 replies; 3+ messages in thread
From: Masahiro Yamada @ 2017-10-11 13:00 UTC (permalink / raw)
  To: X86 ML
  Cc: Masahiro Yamada, H. Peter Anvin, Linux Kernel Mailing List,
	Thomas Gleixner, Ingo Molnar

Hi x86 maintainers,


2017-09-21 0:27 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>:
> The <generated/utsrelease.h> defines UTS_RELEASE, but I do not
> see any reference to it in arch/x86/boot/header.S .
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
>
>  arch/x86/boot/header.S | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/arch/x86/boot/header.S b/arch/x86/boot/header.S
> index 1bb08ec..16c516b 100644
> --- a/arch/x86/boot/header.S
> +++ b/arch/x86/boot/header.S
> @@ -16,7 +16,6 @@
>   */
>
>  #include <asm/segment.h>
> -#include <generated/utsrelease.h>
>  #include <asm/boot.h>
>  #include <asm/page_types.h>
>  #include <asm/setup.h>
> --
> 2.7.4
>

Could you check this please?



-- 
Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [tip:x86/boot] x86/boot: Remove unnecessary #include <generated/utsrelease.h>
  2017-09-20 15:27 [PATCH] x86/boot: remove bogus #include <generated/utsrelease.h> Masahiro Yamada
  2017-10-11 13:00 ` Masahiro Yamada
@ 2017-10-11 15:25 ` tip-bot for Masahiro Yamada
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Masahiro Yamada @ 2017-10-11 15:25 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: hpa, linux-kernel, yamada.masahiro, mingo, peterz, tglx, torvalds

Commit-ID:  dc0fdf7d2bf9e7efdc690b8a594e39de5b3a993b
Gitweb:     https://git.kernel.org/tip/dc0fdf7d2bf9e7efdc690b8a594e39de5b3a993b
Author:     Masahiro Yamada <yamada.masahiro@socionext.com>
AuthorDate: Thu, 21 Sep 2017 00:27:12 +0900
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Wed, 11 Oct 2017 16:46:23 +0200

x86/boot: Remove unnecessary #include <generated/utsrelease.h>

The <generated/utsrelease.h> defines UTS_RELEASE, but I do not
see any reference to it in arch/x86/boot/header.S.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1505921232-8960-1-git-send-email-yamada.masahiro@socionext.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 arch/x86/boot/header.S | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/x86/boot/header.S b/arch/x86/boot/header.S
index 1bb08ec..16c516b 100644
--- a/arch/x86/boot/header.S
+++ b/arch/x86/boot/header.S
@@ -16,7 +16,6 @@
  */
 
 #include <asm/segment.h>
-#include <generated/utsrelease.h>
 #include <asm/boot.h>
 #include <asm/page_types.h>
 #include <asm/setup.h>

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-10-11 15:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-20 15:27 [PATCH] x86/boot: remove bogus #include <generated/utsrelease.h> Masahiro Yamada
2017-10-11 13:00 ` Masahiro Yamada
2017-10-11 15:25 ` [tip:x86/boot] x86/boot: Remove unnecessary " tip-bot for Masahiro Yamada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).