* [PATCH 01/11] ARM: Add SZ_128 [not found] ` <1292622090-21896-2-git-send-email-swarren@nvidia.com> @ 2010-12-18 0:04 ` Stephen Warren 2010-12-20 9:30 ` Uwe Kleine-König 0 siblings, 1 reply; 7+ messages in thread From: Stephen Warren @ 2010-12-18 0:04 UTC (permalink / raw) To: linux-arm-kernel Sorry, resending this so that it reaches the ARM kernel mailing list; I used an old address last time around. Signed-off-by: Stephen Warren <swarren@nvidia.com> CC: linux-arm at lists.arm.linux.org.uk --- arch/arm/include/asm/sizes.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/sizes.h b/arch/arm/include/asm/sizes.h index 4fc1565..98348c3 100644 --- a/arch/arm/include/asm/sizes.h +++ b/arch/arm/include/asm/sizes.h @@ -25,6 +25,7 @@ /* handy sizes */ #define SZ_16 0x00000010 +#define SZ_128 0x00000080 #define SZ_256 0x00000100 #define SZ_512 0x00000200 -- 1.7.0.4 nvpublic ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 01/11] ARM: Add SZ_128 2010-12-18 0:04 ` [PATCH 01/11] ARM: Add SZ_128 Stephen Warren @ 2010-12-20 9:30 ` Uwe Kleine-König 2010-12-21 4:39 ` [PATCH] ARM: Add missing SZ_{32,64,128} Stephen Warren 0 siblings, 1 reply; 7+ messages in thread From: Uwe Kleine-König @ 2010-12-20 9:30 UTC (permalink / raw) To: linux-arm-kernel On Fri, Dec 17, 2010 at 04:04:42PM -0800, Stephen Warren wrote: > Sorry, resending this so that it reaches the ARM kernel mailing list; I > used an old address last time around. > > Signed-off-by: Stephen Warren <swarren@nvidia.com> > CC: linux-arm at lists.arm.linux.org.uk ... and it's still there > --- > arch/arm/include/asm/sizes.h | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/arch/arm/include/asm/sizes.h b/arch/arm/include/asm/sizes.h > index 4fc1565..98348c3 100644 > --- a/arch/arm/include/asm/sizes.h > +++ b/arch/arm/include/asm/sizes.h > @@ -25,6 +25,7 @@ > > /* handy sizes */ > #define SZ_16 0x00000010 > +#define SZ_128 0x00000080 I don't know about your motivation, but why not add all missing entries (and remove the DO NOT EDIT!! statement in the header (and the wrong address of the FSF))? Best regards Uwe -- Pengutronix e.K. | Uwe Kleine-K?nig | Industrial Linux Solutions | http://www.pengutronix.de/ | ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] ARM: Add missing SZ_{32,64,128} 2010-12-20 9:30 ` Uwe Kleine-König @ 2010-12-21 4:39 ` Stephen Warren 2010-12-21 8:31 ` Uwe Kleine-König 2010-12-21 10:43 ` Russell King - ARM Linux 0 siblings, 2 replies; 7+ messages in thread From: Stephen Warren @ 2010-12-21 4:39 UTC (permalink / raw) To: linux-arm-kernel ... and also remove misleading comment stating that this header is auto-generated. Signed-off-by: Stephen Warren <swarren@nvidia.com> --- arch/arm/include/asm/sizes.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/include/asm/sizes.h b/arch/arm/include/asm/sizes.h index 4fc1565..316bb2b 100644 --- a/arch/arm/include/asm/sizes.h +++ b/arch/arm/include/asm/sizes.h @@ -13,9 +13,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* DO NOT EDIT!! - this file automatically generated - * from .s file by awk -f s2h.awk - */ /* Size definitions * Copyright (C) ARM Limited 1998. All rights reserved. */ @@ -25,6 +22,9 @@ /* handy sizes */ #define SZ_16 0x00000010 +#define SZ_32 0x00000020 +#define SZ_64 0x00000040 +#define SZ_128 0x00000080 #define SZ_256 0x00000100 #define SZ_512 0x00000200 -- 1.7.2.3 nvpublic ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH] ARM: Add missing SZ_{32,64,128} 2010-12-21 4:39 ` [PATCH] ARM: Add missing SZ_{32,64,128} Stephen Warren @ 2010-12-21 8:31 ` Uwe Kleine-König 2010-12-21 10:43 ` Russell King - ARM Linux 1 sibling, 0 replies; 7+ messages in thread From: Uwe Kleine-König @ 2010-12-21 8:31 UTC (permalink / raw) To: linux-arm-kernel On Mon, Dec 20, 2010 at 09:39:46PM -0700, Stephen Warren wrote: > ... and also remove misleading comment stating that this header is > auto-generated. > > Signed-off-by: Stephen Warren <swarren@nvidia.com> Acked-by: Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de> Thanks Uwe -- Pengutronix e.K. | Uwe Kleine-K?nig | Industrial Linux Solutions | http://www.pengutronix.de/ | ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] ARM: Add missing SZ_{32,64,128} 2010-12-21 4:39 ` [PATCH] ARM: Add missing SZ_{32,64,128} Stephen Warren 2010-12-21 8:31 ` Uwe Kleine-König @ 2010-12-21 10:43 ` Russell King - ARM Linux 2010-12-22 5:31 ` Stephen Warren 1 sibling, 1 reply; 7+ messages in thread From: Russell King - ARM Linux @ 2010-12-21 10:43 UTC (permalink / raw) To: linux-arm-kernel On Mon, Dec 20, 2010 at 09:39:46PM -0700, Stephen Warren wrote: > ... and also remove misleading comment stating that this header is > auto-generated. > > Signed-off-by: Stephen Warren <swarren@nvidia.com> Ok, can go to the patch system, thanks. > --- > arch/arm/include/asm/sizes.h | 6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/arch/arm/include/asm/sizes.h b/arch/arm/include/asm/sizes.h > index 4fc1565..316bb2b 100644 > --- a/arch/arm/include/asm/sizes.h > +++ b/arch/arm/include/asm/sizes.h > @@ -13,9 +13,6 @@ > * along with this program; if not, write to the Free Software > * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA > */ > -/* DO NOT EDIT!! - this file automatically generated > - * from .s file by awk -f s2h.awk > - */ > /* Size definitions > * Copyright (C) ARM Limited 1998. All rights reserved. > */ > @@ -25,6 +22,9 @@ > > /* handy sizes */ > #define SZ_16 0x00000010 > +#define SZ_32 0x00000020 > +#define SZ_64 0x00000040 > +#define SZ_128 0x00000080 > #define SZ_256 0x00000100 > #define SZ_512 0x00000200 > > -- > 1.7.2.3 > nvpublic > > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel at lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] ARM: Add missing SZ_{32,64,128} 2010-12-21 10:43 ` Russell King - ARM Linux @ 2010-12-22 5:31 ` Stephen Warren 2010-12-22 7:18 ` Uwe Kleine-König 0 siblings, 1 reply; 7+ messages in thread From: Stephen Warren @ 2010-12-22 5:31 UTC (permalink / raw) To: linux-arm-kernel Russell King wrote: > On Mon, Dec 20, 2010 at 09:39:46PM -0700, Stephen Warren wrote: > > ... and also remove misleading comment stating that this header is > > auto-generated. > > > > Signed-off-by: Stephen Warren <swarren@nvidia.com> > > Ok, can go to the patch system, thanks. Being new to kernel development, I just wanted to confirm that was a request for me to go add this patch into the patch system at: http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=6536/1 If so, I have done so. Thanks. -- nvpublic ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] ARM: Add missing SZ_{32,64,128} 2010-12-22 5:31 ` Stephen Warren @ 2010-12-22 7:18 ` Uwe Kleine-König 0 siblings, 0 replies; 7+ messages in thread From: Uwe Kleine-König @ 2010-12-22 7:18 UTC (permalink / raw) To: linux-arm-kernel Hello Stephen, On Tue, Dec 21, 2010 at 09:31:44PM -0800, Stephen Warren wrote: > Russell King wrote: > > On Mon, Dec 20, 2010 at 09:39:46PM -0700, Stephen Warren wrote: > > > ... and also remove misleading comment stating that this header is > > > auto-generated. > > > > > > Signed-off-by: Stephen Warren <swarren@nvidia.com> > > > > Ok, can go to the patch system, thanks. > > Being new to kernel development, I just wanted to confirm that was a > request for me to go add this patch into the patch system at: > > http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=6536/1 > > If so, I have done so. yes, thanks Uwe -- Pengutronix e.K. | Uwe Kleine-K?nig | Industrial Linux Solutions | http://www.pengutronix.de/ | ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-12-22 7:18 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1292622090-21896-1-git-send-email-swarren@nvidia.com>
[not found] ` <1292622090-21896-2-git-send-email-swarren@nvidia.com>
2010-12-18 0:04 ` [PATCH 01/11] ARM: Add SZ_128 Stephen Warren
2010-12-20 9:30 ` Uwe Kleine-König
2010-12-21 4:39 ` [PATCH] ARM: Add missing SZ_{32,64,128} Stephen Warren
2010-12-21 8:31 ` Uwe Kleine-König
2010-12-21 10:43 ` Russell King - ARM Linux
2010-12-22 5:31 ` Stephen Warren
2010-12-22 7:18 ` Uwe Kleine-König
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).