All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] s3c64xx: Fix S3C64XX_CLKDIV0_ARM_MASK value
@ 2009-09-23  3:44 Kukjin Kim
  2009-09-23  3:54 ` Ben Dooks
  0 siblings, 1 reply; 4+ messages in thread
From: Kukjin Kim @ 2009-09-23  3:44 UTC (permalink / raw)
  To: linux-arm-kernel

Fix the values of S3C6400_CLKDIV0_ARM_MASK and S3C6410_CLKDIV0_ARM_MASK.

Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
---
 arch/arm/plat-s3c64xx/include/plat/regs-clock.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/plat-s3c64xx/include/plat/regs-clock.h b/arch/arm/plat-s3c64xx/include/plat/regs-clock.h
index a8777a7..ff46e7f 100644
--- a/arch/arm/plat-s3c64xx/include/plat/regs-clock.h
+++ b/arch/arm/plat-s3c64xx/include/plat/regs-clock.h
@@ -51,8 +51,8 @@
 #define S3C6400_CLKDIV0_HCLK_SHIFT	(8)
 #define S3C6400_CLKDIV0_MPLL_MASK	(0x1 << 4)
 #define S3C6400_CLKDIV0_MPLL_SHIFT	(4)
-#define S3C6400_CLKDIV0_ARM_MASK	(0x3 << 0)
-#define S3C6410_CLKDIV0_ARM_MASK	(0x7 << 0)
+#define S3C6400_CLKDIV0_ARM_MASK	(0x7 << 0)
+#define S3C6410_CLKDIV0_ARM_MASK	(0xf << 0)
 #define S3C6400_CLKDIV0_ARM_SHIFT	(0)
 
 /* CLKDIV1 */
-- 
1.5.3.4

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

* [PATCH] s3c64xx: Fix S3C64XX_CLKDIV0_ARM_MASK value
  2009-09-23  3:44 [PATCH] s3c64xx: Fix S3C64XX_CLKDIV0_ARM_MASK value Kukjin Kim
@ 2009-09-23  3:54 ` Ben Dooks
  0 siblings, 0 replies; 4+ messages in thread
From: Ben Dooks @ 2009-09-23  3:54 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Sep 23, 2009 at 12:44:01PM +0900, Kukjin Kim wrote:
> Fix the values of S3C6400_CLKDIV0_ARM_MASK and S3C6410_CLKDIV0_ARM_MASK.
> 
> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
					^ plese use the @ symbol here.

-- 
Ben

Q:      What's a light-year?
A:      One-third less calories than a regular year.

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

* [PATCH] s3c64xx: Fix S3C64XX_CLKDIV0_ARM_MASK value
@ 2009-09-23  3:59 Kukjin Kim
  0 siblings, 0 replies; 4+ messages in thread
From: Kukjin Kim @ 2009-09-23  3:59 UTC (permalink / raw)
  To: linux-arm-kernel

Fix the values of S3C6400_CLKDIV0_ARM_MASK and S3C6410_CLKDIV0_ARM_MASK.

Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
---
 arch/arm/plat-s3c64xx/include/plat/regs-clock.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/plat-s3c64xx/include/plat/regs-clock.h b/arch/arm/plat-s3c64xx/include/plat/regs-clock.h
index a8777a7..ff46e7f 100644
--- a/arch/arm/plat-s3c64xx/include/plat/regs-clock.h
+++ b/arch/arm/plat-s3c64xx/include/plat/regs-clock.h
@@ -51,8 +51,8 @@
 #define S3C6400_CLKDIV0_HCLK_SHIFT	(8)
 #define S3C6400_CLKDIV0_MPLL_MASK	(0x1 << 4)
 #define S3C6400_CLKDIV0_MPLL_SHIFT	(4)
-#define S3C6400_CLKDIV0_ARM_MASK	(0x3 << 0)
-#define S3C6410_CLKDIV0_ARM_MASK	(0x7 << 0)
+#define S3C6400_CLKDIV0_ARM_MASK	(0x7 << 0)
+#define S3C6410_CLKDIV0_ARM_MASK	(0xf << 0)
 #define S3C6400_CLKDIV0_ARM_SHIFT	(0)
 
 /* CLKDIV1 */
-- 
1.5.3.4

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

* [PATCH] s3c64xx: Fix S3C64XX_CLKDIV0_ARM_MASK value
       [not found] <1253061316-15939-1-git-send-email-kgene@samsung.com>
@ 2009-09-16  0:58 ` Ben Dooks
  0 siblings, 0 replies; 4+ messages in thread
From: Ben Dooks @ 2009-09-16  0:58 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Sep 16, 2009 at 09:35:16AM +0900, Kukjin Kim wrote:
> From: Kukjin Kim <kgene.kim@samsung.com>
> 
> The value of S3C64XX_CLKDIV0_ARM_MASK is wrong. This patch fixes
> this values, S3C6400_CLKDIV0_ARM_MASK and S3C6410_CLKDIV0_ARM_MASK.

Would have been better worded as:

Fix the values of S3C6400_CLKDIV0_ARM_MASK and S3C6410_CLKDIV0_ARM_MASK.
 
> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>

Real email address, ie kgene.kim at samsung.com in signoff.

> ---
>  arch/arm/plat-s3c64xx/include/plat/regs-clock.h |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/plat-s3c64xx/include/plat/regs-clock.h b/arch/arm/plat-s3c64xx/include/plat/regs-clock.h
> index a8777a7..ff46e7f 100644
> --- a/arch/arm/plat-s3c64xx/include/plat/regs-clock.h
> +++ b/arch/arm/plat-s3c64xx/include/plat/regs-clock.h
> @@ -51,8 +51,8 @@
>  #define S3C6400_CLKDIV0_HCLK_SHIFT	(8)
>  #define S3C6400_CLKDIV0_MPLL_MASK	(0x1 << 4)
>  #define S3C6400_CLKDIV0_MPLL_SHIFT	(4)
> -#define S3C6400_CLKDIV0_ARM_MASK	(0x3 << 0)
> -#define S3C6410_CLKDIV0_ARM_MASK	(0x7 << 0)
> +#define S3C6400_CLKDIV0_ARM_MASK	(0x7 << 0)
> +#define S3C6410_CLKDIV0_ARM_MASK	(0xf << 0)
>  #define S3C6400_CLKDIV0_ARM_SHIFT	(0)
>  
>  /* CLKDIV1 */
> -- 
> 1.5.3.4
> 

-- 
-- 
Ben

Q:      What's a light-year?
A:      One-third less calories than a regular year.

-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20090916/0737da83/attachment.sig>

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

end of thread, other threads:[~2009-09-23  3:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-23  3:44 [PATCH] s3c64xx: Fix S3C64XX_CLKDIV0_ARM_MASK value Kukjin Kim
2009-09-23  3:54 ` Ben Dooks
  -- strict thread matches above, loose matches on Subject: below --
2009-09-23  3:59 Kukjin Kim
     [not found] <1253061316-15939-1-git-send-email-kgene@samsung.com>
2009-09-16  0:58 ` 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.