linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] s3c64xx: Fix S3C64XX_CLKDIV0_ARM_MASK value
@ 2009-09-05  8:27 Kukjin Kim
  2009-09-16  0:02 ` Ben Dooks
  0 siblings, 1 reply; 2+ messages in thread
From: Kukjin Kim @ 2009-09-05  8:27 UTC (permalink / raw)
  To: linux-arm-kernel


The value of S3C64XX_CLKDIV0_ARM_MASK is wrong. This patch fixes                                
this values, 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] 2+ messages in thread

end of thread, other threads:[~2009-09-16  0:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-05  8:27 [PATCH 1/3] s3c64xx: Fix S3C64XX_CLKDIV0_ARM_MASK value Kukjin Kim
2009-09-16  0:02 ` Ben Dooks

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).