All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] nand/s3c2410: s3c2410_nand_setrate(): use correct macros for 2412/2440
@ 2009-06-03 11:46 Peter Korsgaard
  0 siblings, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2009-06-03 11:46 UTC (permalink / raw)
  To: linux-mtd, dwmw2, ben-linux

Use the correct S3C2440_NFCONF_* macros for the mask for the 2412/2440
variants instead of the 2410 ones which use wrong bit positions.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 drivers/mtd/nand/s3c2410.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/mtd/nand/s3c2410.c b/drivers/mtd/nand/s3c2410.c
index 8e375d5..776756e 100644
--- a/drivers/mtd/nand/s3c2410.c
+++ b/drivers/mtd/nand/s3c2410.c
@@ -215,9 +215,9 @@ static int s3c2410_nand_setrate(struct s3c2410_nand_info *info)
 
 	case TYPE_S3C2440:
 	case TYPE_S3C2412:
-		mask = (S3C2410_NFCONF_TACLS(tacls_max - 1) |
-			S3C2410_NFCONF_TWRPH0(7) |
-			S3C2410_NFCONF_TWRPH1(7));
+		mask = (S3C2440_NFCONF_TACLS(tacls_max - 1) |
+			S3C2440_NFCONF_TWRPH0(7) |
+			S3C2440_NFCONF_TWRPH1(7));
 
 		set = S3C2440_NFCONF_TACLS(tacls - 1);
 		set |= S3C2440_NFCONF_TWRPH0(twrph0 - 1);
-- 
1.6.2

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

* Re: [PATCH] nand/s3c2410: s3c2410_nand_setrate(): use correct macros for 2412/2440
  2009-06-07 13:04 Peter Korsgaard
  2009-06-08  5:28 ` Artem Bityutskiy
@ 2009-06-08 11:20 ` Ben Dooks
  1 sibling, 0 replies; 10+ messages in thread
From: Ben Dooks @ 2009-06-08 11:20 UTC (permalink / raw)
  To: Peter Korsgaard
  Cc: wookey, linux-mtd, David.Woodhouse, ben-linux, linux-arm-kernel

On Sun, Jun 07, 2009 at 03:04:22PM +0200, Peter Korsgaard wrote:
> Use the correct S3C2440_NFCONF_* macros for the mask for the 2412/2440
> variants instead of the 2410 ones which use wrong bit positions.
> 
> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Acked-by: Ben Dooks <ben-linux@fluff.org>
> ---
>  drivers/mtd/nand/s3c2410.c |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/mtd/nand/s3c2410.c b/drivers/mtd/nand/s3c2410.c
> index 89b7905..01a105e 100644
> --- a/drivers/mtd/nand/s3c2410.c
> +++ b/drivers/mtd/nand/s3c2410.c
> @@ -253,9 +253,9 @@ static int s3c2410_nand_setrate(struct s3c2410_nand_info *info)
>  
>  	case TYPE_S3C2440:
>  	case TYPE_S3C2412:
> -		mask = (S3C2410_NFCONF_TACLS(tacls_max - 1) |
> -			S3C2410_NFCONF_TWRPH0(7) |
> -			S3C2410_NFCONF_TWRPH1(7));
> +		mask = (S3C2440_NFCONF_TACLS(tacls_max - 1) |
> +			S3C2440_NFCONF_TWRPH0(7) |
> +			S3C2440_NFCONF_TWRPH1(7));
>  
>  		set = S3C2440_NFCONF_TACLS(tacls - 1);
>  		set |= S3C2440_NFCONF_TWRPH0(twrph0 - 1);
> -- 
> 1.6.2
> 
> 
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/

-- 
Ben (ben@fluff.org, http://www.fluff.org/)

  'a smiley only costs 4 bytes'

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

* Re: [PATCH] nand/s3c2410: s3c2410_nand_setrate(): use correct macros for 2412/2440
  2009-06-08  7:51           ` David Woodhouse
@ 2009-06-08  7:54             ` Peter Korsgaard
  0 siblings, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2009-06-08  7:54 UTC (permalink / raw)
  To: David Woodhouse; +Cc: wookey, linux-mtd, linux-arm-kernel, ben-linux

>>>>> "David" == David Woodhouse <dwmw2@infradead.org> writes:

Hi,

 David> In the years since I implemented that basic netiquette check,
 David> it's become acceptable to do exactly that for patch
 David> sequences. I thought I'd fixed it to accept 'PATCH' as well as
 David> 'Re:' and 'Aw:', but on looking closer I see I screwed it up
 David> -- it was trying to do a case-insensitive compare by turning
 David> the subject header into lower case before the
 David> comparison.... and then comparing against 'PATCH' in upper
 David> case... :)

Thanks!

-- 
Bye, Peter Korsgaard

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

* Re: [PATCH] nand/s3c2410: s3c2410_nand_setrate(): use correct macros for 2412/2440
  2009-06-08  6:41         ` Artem Bityutskiy
@ 2009-06-08  7:51           ` David Woodhouse
  2009-06-08  7:54             ` Peter Korsgaard
  0 siblings, 1 reply; 10+ messages in thread
From: David Woodhouse @ 2009-06-08  7:51 UTC (permalink / raw)
  To: dedekind; +Cc: wookey, linux-mtd, linux-arm-kernel, ben-linux

On Sun, 2009-06-07 at 23:41 -0700, Artem Bityutskiy wrote:
> 
> "Re in subject but no in-reply-to". dwmw2 was going to fix this
> few years ago :-)

Other way round, surely. It's the thread-hijack check, which checks for
messages with In-Reply-To: or References: headers indicating that
they're a reply to an existing thread, but without 'Re:' or 'Aw:' in the
Subject: header.

In the years since I implemented that basic netiquette check, it's
become acceptable to do exactly that for patch sequences. I thought I'd
fixed it to accept 'PATCH' as well as 'Re:' and 'Aw:', but on looking
closer I see I screwed it up -- it was trying to do a case-insensitive
compare by turning the subject header into lower case before the 
comparison.... and then comparing against 'PATCH' in upper case... :)

Fixed now:
http://git.infradead.org/users/dwmw2/eximconf.git?a=commitdiff;h=47505756

-- 
David Woodhouse                            Open Source Technology Centre
David.Woodhouse@intel.com                              Intel Corporation

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

* Re: [PATCH] nand/s3c2410: s3c2410_nand_setrate(): use correct macros for 2412/2440
  2009-06-08  6:32       ` Peter Korsgaard
@ 2009-06-08  6:41         ` Artem Bityutskiy
  2009-06-08  7:51           ` David Woodhouse
  0 siblings, 1 reply; 10+ messages in thread
From: Artem Bityutskiy @ 2009-06-08  6:41 UTC (permalink / raw)
  To: Peter Korsgaard
  Cc: wookey, linux-mtd, David.Woodhouse, ben-linux, linux-arm-kernel

On Mon, 2009-06-08 at 08:32 +0200, Peter Korsgaard wrote:
> >>>>> "Artem" == Artem Bityutskiy <dedekind@infradead.org> writes:
> 
> Hi,
> 
>  >> That patch seems to have never made it to the list though, so I
>  >> will resend.
> 
>  Artem> It was trapped, but now approved.
> 
> Thanks. What did I do wrong to get it trapped?

"Re in subject but no in-reply-to". dwmw2 was going to fix this
few years ago :-)

-- 
Best regards,
Artem Bityutskiy (Битюцкий Артём)

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

* Re: [PATCH] nand/s3c2410: s3c2410_nand_setrate(): use correct macros for 2412/2440
  2009-06-08  5:47     ` Artem Bityutskiy
@ 2009-06-08  6:32       ` Peter Korsgaard
  2009-06-08  6:41         ` Artem Bityutskiy
  0 siblings, 1 reply; 10+ messages in thread
From: Peter Korsgaard @ 2009-06-08  6:32 UTC (permalink / raw)
  To: dedekind; +Cc: wookey, linux-mtd, David.Woodhouse, ben-linux, linux-arm-kernel

>>>>> "Artem" == Artem Bityutskiy <dedekind@infradead.org> writes:

Hi,

 >> That patch seems to have never made it to the list though, so I
 >> will resend.

 Artem> It was trapped, but now approved.

Thanks. What did I do wrong to get it trapped?

-- 
Bye, Peter Korsgaard

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

* Re: [PATCH] nand/s3c2410: s3c2410_nand_setrate(): use correct macros for 2412/2440
  2009-06-08  5:38   ` Peter Korsgaard
@ 2009-06-08  5:47     ` Artem Bityutskiy
  2009-06-08  6:32       ` Peter Korsgaard
  0 siblings, 1 reply; 10+ messages in thread
From: Artem Bityutskiy @ 2009-06-08  5:47 UTC (permalink / raw)
  To: Peter Korsgaard
  Cc: wookey, linux-mtd, David.Woodhouse, ben-linux, linux-arm-kernel

On Mon, 2009-06-08 at 07:38 +0200, Peter Korsgaard wrote:
> >>>>> "Artem" == Artem Bityutskiy <dedekind@infradead.org> writes:
> 
>  Artem> On Sun, 2009-06-07 at 15:04 +0200, Peter Korsgaard wrote:
>  >> Use the correct S3C2440_NFCONF_* macros for the mask for the 2412/2440
>  >> variants instead of the 2410 ones which use wrong bit positions.
>  >> 
>  >> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
> 
>  Artem> Your patch is already in the mtd-2.6.git tree.
> 
> Ahh, sorry - Missed that. I resent it as it is a prerequisite to the
> s3c64xx support to the driver I sent yesterday.
> 
> That patch seems to have never made it to the list though, so I will
> resend.

It was trapped, but now approved.

-- 
Best regards,
Artem Bityutskiy (Битюцкий Артём)

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

* Re: [PATCH] nand/s3c2410: s3c2410_nand_setrate(): use correct macros for 2412/2440
  2009-06-08  5:28 ` Artem Bityutskiy
@ 2009-06-08  5:38   ` Peter Korsgaard
  2009-06-08  5:47     ` Artem Bityutskiy
  0 siblings, 1 reply; 10+ messages in thread
From: Peter Korsgaard @ 2009-06-08  5:38 UTC (permalink / raw)
  To: dedekind; +Cc: wookey, linux-mtd, David.Woodhouse, ben-linux, linux-arm-kernel

>>>>> "Artem" == Artem Bityutskiy <dedekind@infradead.org> writes:

 Artem> On Sun, 2009-06-07 at 15:04 +0200, Peter Korsgaard wrote:
 >> Use the correct S3C2440_NFCONF_* macros for the mask for the 2412/2440
 >> variants instead of the 2410 ones which use wrong bit positions.
 >> 
 >> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>

 Artem> Your patch is already in the mtd-2.6.git tree.

Ahh, sorry - Missed that. I resent it as it is a prerequisite to the
s3c64xx support to the driver I sent yesterday.

That patch seems to have never made it to the list though, so I will
resend.

-- 
Bye, Peter Korsgaard

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

* Re: [PATCH] nand/s3c2410: s3c2410_nand_setrate(): use correct macros for 2412/2440
  2009-06-07 13:04 Peter Korsgaard
@ 2009-06-08  5:28 ` Artem Bityutskiy
  2009-06-08  5:38   ` Peter Korsgaard
  2009-06-08 11:20 ` Ben Dooks
  1 sibling, 1 reply; 10+ messages in thread
From: Artem Bityutskiy @ 2009-06-08  5:28 UTC (permalink / raw)
  To: Peter Korsgaard
  Cc: wookey, linux-mtd, David.Woodhouse, ben-linux, linux-arm-kernel

On Sun, 2009-06-07 at 15:04 +0200, Peter Korsgaard wrote:
> Use the correct S3C2440_NFCONF_* macros for the mask for the 2412/2440
> variants instead of the 2410 ones which use wrong bit positions.
> 
> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>

Your patch is already in the mtd-2.6.git tree.

-- 
Best regards,
Artem Bityutskiy (Битюцкий Артём)

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

* [PATCH] nand/s3c2410: s3c2410_nand_setrate(): use correct macros for 2412/2440
@ 2009-06-07 13:04 Peter Korsgaard
  2009-06-08  5:28 ` Artem Bityutskiy
  2009-06-08 11:20 ` Ben Dooks
  0 siblings, 2 replies; 10+ messages in thread
From: Peter Korsgaard @ 2009-06-07 13:04 UTC (permalink / raw)
  To: ben-linux, David.Woodhouse, linux-mtd, linux-arm-kernel; +Cc: wookey

Use the correct S3C2440_NFCONF_* macros for the mask for the 2412/2440
variants instead of the 2410 ones which use wrong bit positions.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 drivers/mtd/nand/s3c2410.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/mtd/nand/s3c2410.c b/drivers/mtd/nand/s3c2410.c
index 89b7905..01a105e 100644
--- a/drivers/mtd/nand/s3c2410.c
+++ b/drivers/mtd/nand/s3c2410.c
@@ -253,9 +253,9 @@ static int s3c2410_nand_setrate(struct s3c2410_nand_info *info)
 
 	case TYPE_S3C2440:
 	case TYPE_S3C2412:
-		mask = (S3C2410_NFCONF_TACLS(tacls_max - 1) |
-			S3C2410_NFCONF_TWRPH0(7) |
-			S3C2410_NFCONF_TWRPH1(7));
+		mask = (S3C2440_NFCONF_TACLS(tacls_max - 1) |
+			S3C2440_NFCONF_TWRPH0(7) |
+			S3C2440_NFCONF_TWRPH1(7));
 
 		set = S3C2440_NFCONF_TACLS(tacls - 1);
 		set |= S3C2440_NFCONF_TWRPH0(twrph0 - 1);
-- 
1.6.2

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

end of thread, other threads:[~2009-06-08 11:20 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-03 11:46 [PATCH] nand/s3c2410: s3c2410_nand_setrate(): use correct macros for 2412/2440 Peter Korsgaard
2009-06-07 13:04 Peter Korsgaard
2009-06-08  5:28 ` Artem Bityutskiy
2009-06-08  5:38   ` Peter Korsgaard
2009-06-08  5:47     ` Artem Bityutskiy
2009-06-08  6:32       ` Peter Korsgaard
2009-06-08  6:41         ` Artem Bityutskiy
2009-06-08  7:51           ` David Woodhouse
2009-06-08  7:54             ` Peter Korsgaard
2009-06-08 11:20 ` Ben Dooks

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.