diff options
author | Ben Dooks <ben@simtec.co.uk> | 2009-02-26 23:00:34 +0000 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-02-26 23:25:51 +0000 |
commit | 41ba41d7c7e1d2a3c9cdfe16c1ee9f7af4693ae2 (patch) | |
tree | acce14caaa3b2807aa005703732de2c63b2c7af1 | |
parent | 19c5957081a6ffbf014e6c944e6aafee3c1632c3 (diff) | |
download | linux-41ba41d7c7e1d2a3c9cdfe16c1ee9f7af4693ae2.tar.gz linux-41ba41d7c7e1d2a3c9cdfe16c1ee9f7af4693ae2.tar.bz2 linux-41ba41d7c7e1d2a3c9cdfe16c1ee9f7af4693ae2.zip |
[ARM] S3C64XX: Fix USB host clock mux list
The clock list for the USB host bus clock was in the wrong order,
move clk_48m to position 0.
Signed-off-by: Ben Dooks <ben@simtec.co.uk>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
-rw-r--r-- | arch/arm/plat-s3c64xx/s3c6400-clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-s3c64xx/s3c6400-clock.c b/arch/arm/plat-s3c64xx/s3c6400-clock.c index a2f526bcb389..2984270b40a7 100644 --- a/arch/arm/plat-s3c64xx/s3c6400-clock.c +++ b/arch/arm/plat-s3c64xx/s3c6400-clock.c @@ -189,10 +189,10 @@ static struct clk_sources clkset_uart = { }; static struct clk *clkset_uhost_list[] = { + &clk_48m, &clk_mout_epll.clk, &clk_dout_mpll, &clk_fin_epll, - &clk_48m, }; static struct clk_sources clkset_uhost = { |