diff mbox

[1/2] ARM: SA1100: Create dummy clk_get_rate() to avoid build failures

Message ID aaadbfa341a881c8250f2d23bc77062228d2e70b.1389279793.git.viresh.kumar@linaro.org
State New
Headers show

Commit Message

Viresh Kumar Jan. 9, 2014, 3:08 p.m. UTC
There are some parts of common kernel which would be using routines like
clk_get_rate() on some platforms. Currently these wouldn't be called for SA1100
boards but we need these routines for successful builds of these boards.

So, this patch creates a dummy clk_get_rate() routine which is being used by
cpufreq core. More dummy routines might be added later if there is a need for
that.

Cc: Russell King <linux@arm.linux.org.uk>
Cc: Arnd Bergmann <arnd.bergmann@linaro.org>
Reported-by: <Olof Johansson> olof@lixom.net
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
Hi Rafael,

This is the only new part here. 2/2 is still the same. Its compiled for Assabet
board. And the issue reported by Olof is resolved with it.

 arch/arm/mach-sa1100/clock.c | 7 +++++++
 1 file changed, 7 insertions(+)

Comments

Viresh Kumar Jan. 10, 2014, 1:44 a.m. UTC | #1
On 9 January 2014 21:56, Olof Johansson <olof@lixom.net> wrote:
> On Thu, Jan 9, 2014 at 7:08 AM, Viresh Kumar <viresh.kumar@linaro.org> wrote:
>> There are some parts of common kernel which would be using routines like
>> clk_get_rate() on some platforms. Currently these wouldn't be called for SA1100
>> boards but we need these routines for successful builds of these boards.
>>
>> So, this patch creates a dummy clk_get_rate() routine which is being used by
>> cpufreq core. More dummy routines might be added later if there is a need for
>> that.
>>
>> Cc: Russell King <linux@arm.linux.org.uk>
>> Cc: Arnd Bergmann <arnd.bergmann@linaro.org>
>> Reported-by: <Olof Johansson> olof@lixom.net
>
> That's not the right format.

So sorry for that..
@Rafael: Can you fix this up while applying? Or you want me to send
this again?
diff mbox

Patch

diff --git a/arch/arm/mach-sa1100/clock.c b/arch/arm/mach-sa1100/clock.c
index 172ebd0..9fa6a99 100644
--- a/arch/arm/mach-sa1100/clock.c
+++ b/arch/arm/mach-sa1100/clock.c
@@ -33,6 +33,13 @@  struct clk clk_##_name = {				\
 
 static DEFINE_SPINLOCK(clocks_lock);
 
+/* Dummy clk routine to build generic kernel parts that may be using them */
+unsigned long clk_get_rate(struct clk *clk)
+{
+	return 0;
+}
+EXPORT_SYMBOL(clk_get_rate);
+
 static void clk_gpio27_enable(struct clk *clk)
 {
 	/*