Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0cc69daa3e6c958bc678b3db268dc279b68fd76f
Commit:     0cc69daa3e6c958bc678b3db268dc279b68fd76f
Parent:     eca8c2424171b6b6b2dcb0faa92dfddd1e3297d9
Author:     Ben Dooks <[EMAIL PROTECTED]>
AuthorDate: Mon May 28 18:55:43 2007 +0100
Committer:  Russell King <[EMAIL PROTECTED]>
CommitDate: Wed May 30 13:15:26 2007 +0100

    [ARM] 4414/1: S3C2443: sparse fix for clock.c
    
    Fix sparse warnings in the arch/arm/mach-s3c2443/clock.c,
    including an bug in initialising the cf clock initialiser
    where two values are being set for the ctrlbit.
    
    arch/arm/mach-s3c2443/clock.c:397:12: warning: symbol 'clk_usb_bus_host' 
was not declared. Should it be static?
    arch/arm/mach-s3c2443/clock.c:760:4: error: Initializer entry defined twice
    arch/arm/mach-s3c2443/clock.c:761:4:   also defined here
    
    Signed-off-by: Ben Dooks <[EMAIL PROTECTED]>
    Signed-off-by: Russell King <[EMAIL PROTECTED]>
---
 arch/arm/mach-s3c2443/clock.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-s3c2443/clock.c b/arch/arm/mach-s3c2443/clock.c
index 5955efb..5840294 100644
--- a/arch/arm/mach-s3c2443/clock.c
+++ b/arch/arm/mach-s3c2443/clock.c
@@ -394,7 +394,7 @@ static int s3c2443_setrate_usbhost(struct clk *clk, 
unsigned long rate)
        return 0;
 }
 
-struct clk clk_usb_bus_host = {
+static struct clk clk_usb_bus_host = {
        .name           = "usb-bus-host-parent",
        .id             = -1,
        .parent         = &clk_esysclk,
@@ -758,7 +758,6 @@ static struct clk init_clocks[] = {
                .parent         = &clk_h,
                .enable         = s3c2443_clkcon_enable_h,
                .ctrlbit        = S3C2443_HCLKCON_CFC,
-               .ctrlbit        = S3C2443_HCLKCON_HSMMC,
        }, {
                .name           = "ssmc",
                .id             = -1,
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to