diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-01-16 16:27:28 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-05-02 09:35:29 +0100 |
commit | 39c0cb02db5b8fdfac76d506b7a008b70bc960e9 (patch) | |
tree | 30e79dcadb5f6c26bba5fcf585cc309e240ff948 /arch/arm/mach-realview/clock.h | |
parent | b830b9b5b3d04bc22f0b9ded85b713f7d3c11b7f (diff) | |
download | kernel_samsung_smdk4412-39c0cb02db5b8fdfac76d506b7a008b70bc960e9.tar.gz kernel_samsung_smdk4412-39c0cb02db5b8fdfac76d506b7a008b70bc960e9.tar.bz2 kernel_samsung_smdk4412-39c0cb02db5b8fdfac76d506b7a008b70bc960e9.zip |
ARM: ICST: merge common ICST VCO structures
The structures for the ICST307 and ICST525 VCO devices are
identical, so merge them together.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-realview/clock.h')
-rw-r--r-- | arch/arm/mach-realview/clock.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/arm/mach-realview/clock.h b/arch/arm/mach-realview/clock.h index ebbb0f06b60..fa64c854258 100644 --- a/arch/arm/mach-realview/clock.h +++ b/arch/arm/mach-realview/clock.h @@ -8,12 +8,13 @@ * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ +#include <asm/hardware/icst.h> + struct module; -struct icst307_params; struct clk { unsigned long rate; - const struct icst307_params *params; + const struct icst_params *params; void *data; - void (*setvco)(struct clk *, struct icst307_vco vco); + void (*setvco)(struct clk *, struct icst_vco vco); }; |