* [PATCH] ARM: boot: compressed: ignore bswapsdi2.S
@ 2014-02-20 12:26 Mark Rutland
2014-02-20 20:30 ` Nicolas Pitre
0 siblings, 1 reply; 4+ messages in thread
From: Mark Rutland @ 2014-02-20 12:26 UTC (permalink / raw)
To: linux-arm-kernel
Commit 017f161a55b4 (ARM: 7877/1: use built-in byte swap function) added
bswapsdi2.{o,S} to arch/arm/boot/compress/Makefile, but didn't update
the .gitignore. Thus after a build git status shows bswapsdi2.S as a new
file, which is a little annoying.
This patch updates arch/arm/boot/compress/.gitignore to ignore
bswapsdi2.S, as we already do for ashldi3.S and others.
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Cc: Kim Phillips <kim.phillips@freescale.com>
Cc: Nicolas Pitre <nico@linaro.org>
Cc: David Woodhouse <David.Woodhouse@intel.com>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
---
arch/arm/boot/compressed/.gitignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/boot/compressed/.gitignore b/arch/arm/boot/compressed/.gitignore
index 47279aa..0714e03 100644
--- a/arch/arm/boot/compressed/.gitignore
+++ b/arch/arm/boot/compressed/.gitignore
@@ -1,4 +1,5 @@
ashldi3.S
+bswapsdi2.S
font.c
lib1funcs.S
hyp-stub.S
--
1.8.1.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] ARM: boot: compressed: ignore bswapsdi2.S
2014-02-20 12:26 [PATCH] ARM: boot: compressed: ignore bswapsdi2.S Mark Rutland
@ 2014-02-20 20:30 ` Nicolas Pitre
2014-02-24 17:22 ` Kim Phillips
0 siblings, 1 reply; 4+ messages in thread
From: Nicolas Pitre @ 2014-02-20 20:30 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, 20 Feb 2014, Mark Rutland wrote:
> Commit 017f161a55b4 (ARM: 7877/1: use built-in byte swap function) added
> bswapsdi2.{o,S} to arch/arm/boot/compress/Makefile, but didn't update
> the .gitignore. Thus after a build git status shows bswapsdi2.S as a new
> file, which is a little annoying.
>
> This patch updates arch/arm/boot/compress/.gitignore to ignore
> bswapsdi2.S, as we already do for ashldi3.S and others.
>
> Signed-off-by: Mark Rutland <mark.rutland@arm.com>
> Cc: Kim Phillips <kim.phillips@freescale.com>
> Cc: Nicolas Pitre <nico@linaro.org>
> Cc: David Woodhouse <David.Woodhouse@intel.com>
> Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Acked-by: Nicolas Pitre <nico@linaro.org>
> ---
> arch/arm/boot/compressed/.gitignore | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/boot/compressed/.gitignore b/arch/arm/boot/compressed/.gitignore
> index 47279aa..0714e03 100644
> --- a/arch/arm/boot/compressed/.gitignore
> +++ b/arch/arm/boot/compressed/.gitignore
> @@ -1,4 +1,5 @@
> ashldi3.S
> +bswapsdi2.S
> font.c
> lib1funcs.S
> hyp-stub.S
> --
> 1.8.1.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] ARM: boot: compressed: ignore bswapsdi2.S
2014-02-20 20:30 ` Nicolas Pitre
@ 2014-02-24 17:22 ` Kim Phillips
2014-02-26 16:26 ` Mark Rutland
0 siblings, 1 reply; 4+ messages in thread
From: Kim Phillips @ 2014-02-24 17:22 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, 20 Feb 2014 15:30:31 -0500
Nicolas Pitre <nicolas.pitre@linaro.org> wrote:
> On Thu, 20 Feb 2014, Mark Rutland wrote:
>
> > Commit 017f161a55b4 (ARM: 7877/1: use built-in byte swap function) added
> > bswapsdi2.{o,S} to arch/arm/boot/compress/Makefile, but didn't update
> > the .gitignore. Thus after a build git status shows bswapsdi2.S as a new
> > file, which is a little annoying.
> >
> > This patch updates arch/arm/boot/compress/.gitignore to ignore
> > bswapsdi2.S, as we already do for ashldi3.S and others.
> >
> > Signed-off-by: Mark Rutland <mark.rutland@arm.com>
> > Cc: Kim Phillips <kim.phillips@freescale.com>
> > Cc: Nicolas Pitre <nico@linaro.org>
> > Cc: David Woodhouse <David.Woodhouse@intel.com>
> > Cc: Russell King <rmk+kernel@arm.linux.org.uk>
>
> Acked-by: Nicolas Pitre <nico@linaro.org>
Acked-by: Kim Phillips <kim.phillips@freescale.com>
Thanks,
Kim
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] ARM: boot: compressed: ignore bswapsdi2.S
2014-02-24 17:22 ` Kim Phillips
@ 2014-02-26 16:26 ` Mark Rutland
0 siblings, 0 replies; 4+ messages in thread
From: Mark Rutland @ 2014-02-26 16:26 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Feb 24, 2014 at 05:22:00PM +0000, Kim Phillips wrote:
> On Thu, 20 Feb 2014 15:30:31 -0500
> Nicolas Pitre <nicolas.pitre@linaro.org> wrote:
>
> > On Thu, 20 Feb 2014, Mark Rutland wrote:
> >
> > > Commit 017f161a55b4 (ARM: 7877/1: use built-in byte swap function) added
> > > bswapsdi2.{o,S} to arch/arm/boot/compress/Makefile, but didn't update
> > > the .gitignore. Thus after a build git status shows bswapsdi2.S as a new
> > > file, which is a little annoying.
> > >
> > > This patch updates arch/arm/boot/compress/.gitignore to ignore
> > > bswapsdi2.S, as we already do for ashldi3.S and others.
> > >
> > > Signed-off-by: Mark Rutland <mark.rutland@arm.com>
> > > Cc: Kim Phillips <kim.phillips@freescale.com>
> > > Cc: Nicolas Pitre <nico@linaro.org>
> > > Cc: David Woodhouse <David.Woodhouse@intel.com>
> > > Cc: Russell King <rmk+kernel@arm.linux.org.uk>
> >
> > Acked-by: Nicolas Pitre <nico@linaro.org>
>
> Acked-by: Kim Phillips <kim.phillips@freescale.com>
Thanks Kim, Nico.
Russell, on the assumption you're happy with this I've dropped it into
the patch system as 7992/1 (with both Acks and the typos in the commit
message corrected).
Cheers,
Mark.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-02-26 16:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-20 12:26 [PATCH] ARM: boot: compressed: ignore bswapsdi2.S Mark Rutland
2014-02-20 20:30 ` Nicolas Pitre
2014-02-24 17:22 ` Kim Phillips
2014-02-26 16:26 ` Mark Rutland
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).