diff options
author | 2009-01-08 22:01:49 +0000 | |
---|---|---|
committer | 2009-01-08 22:01:49 +0000 | |
commit | 97b5fe8e28d78779e35ac283bacb9eceffd5b4a3 (patch) | |
tree | 61f14f70b1de0ef0e48e9504d083754a82b71dca /arch/arm/mach-footbridge/common.c | |
parent | Merge branch 'next-footbridge' of git://aeryn.fluff.org.uk/bjdooks/linux (diff) | |
parent | Merge branch 'for_rmk' of git://git.mnementh.co.uk/linux-2.6-im into devel (diff) | |
download | linux-dev-97b5fe8e28d78779e35ac283bacb9eceffd5b4a3.tar.xz linux-dev-97b5fe8e28d78779e35ac283bacb9eceffd5b4a3.zip |
Merge branch 'devel'
Diffstat (limited to 'arch/arm/mach-footbridge/common.c')
-rw-r--r-- | arch/arm/mach-footbridge/common.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-footbridge/common.c b/arch/arm/mach-footbridge/common.c index aad270b76311..b97f529e58e8 100644 --- a/arch/arm/mach-footbridge/common.c +++ b/arch/arm/mach-footbridge/common.c @@ -32,6 +32,13 @@ unsigned int mem_fclk_21285 = 50000000; EXPORT_SYMBOL(mem_fclk_21285); +static void __init early_fclk(char **arg) +{ + mem_fclk_21285 = simple_strtoul(*arg, arg, 0); +} + +__early_param("mem_fclk_21285=", early_fclk); + static int __init parse_tag_memclk(const struct tag *tag) { mem_fclk_21285 = tag->u.memclk.fmemclk; |