diff options
author | Bob Liu <lliubbo@gmail.com> | 2010-09-17 11:09:57 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-01-10 07:10:13 -0500 |
commit | 759a3f3f3171c521229dda2335e5ab105f6fdc40 (patch) | |
tree | 16c95f046b345a649928709ff812d3563562a274 /arch/blackfin/mach-bf548 | |
parent | 1a314ad4b0e3d6d76fb04c0481e95bd026c57749 (diff) | |
download | op-kernel-dev-759a3f3f3171c521229dda2335e5ab105f6fdc40.zip op-kernel-dev-759a3f3f3171c521229dda2335e5ab105f6fdc40.tar.gz |
Blackfin: musb-boards: push clkin value to platform resources
In order to not touch the driver file for different xtal usage,
push the clkin value to board file and calculate the register
value instead of hardcoding it.
Signed-off-by: Bob Liu <lliubbo@gmail.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/mach-bf548')
-rw-r--r-- | arch/blackfin/mach-bf548/boards/cm_bf548.c | 1 | ||||
-rw-r--r-- | arch/blackfin/mach-bf548/boards/ezkit.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/blackfin/mach-bf548/boards/cm_bf548.c b/arch/blackfin/mach-bf548/boards/cm_bf548.c index 4c2ee67..9182d73 100644 --- a/arch/blackfin/mach-bf548/boards/cm_bf548.c +++ b/arch/blackfin/mach-bf548/boards/cm_bf548.c @@ -504,6 +504,7 @@ static struct musb_hdrc_config musb_config = { * if it is the case. */ .gpio_vrsel_active = 1, + .clkin = 24, /* musb CLKIN in MHZ */ }; static struct musb_hdrc_platform_data musb_plat = { diff --git a/arch/blackfin/mach-bf548/boards/ezkit.c b/arch/blackfin/mach-bf548/boards/ezkit.c index 4f03fbc..63345d2 100644 --- a/arch/blackfin/mach-bf548/boards/ezkit.c +++ b/arch/blackfin/mach-bf548/boards/ezkit.c @@ -609,6 +609,7 @@ static struct musb_hdrc_config musb_config = { * if it is the case. */ .gpio_vrsel_active = 1, + .clkin = 24, /* musb CLKIN in MHZ */ }; static struct musb_hdrc_platform_data musb_plat = { |