[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1265041498-2434-1-git-send-email-aaro.koskinen@iki.fi>
Date: Mon, 1 Feb 2010 18:24:58 +0200
From: Aaro Koskinen <aaro.koskinen@....fi>
To: stable@...nel.org, gregkh@...e.de, tglx@...utronix.de,
linux-kernel@...r.kernel.org
Subject: [PATCH v2 -stable 2.6.32.7] clocksource: fix compilation if no GENERIC_TIME
Commit a9238ce3bb0fda6e760780b702c6cbd3793087d3 broke compilation on
platforms that do not implement GENERIC_TIME (e.g. iop32x):
kernel/time/clocksource.c: In function 'clocksource_register':
kernel/time/clocksource.c:556: error: implicit declaration of function 'clocksource_max_deferment'
Provide the implementation of clocksource_max_deferment() also for
such platforms.
Signed-off-by: Aaro Koskinen <aaro.koskinen@....fi>
Cc: stable <stable@...nel.org>
---
v2: Instead of adding a dummy function, just move the #ifdef. This
is actually the same change that was included in the upstream commit
a362c638bdf052bf424bce7645d39b101090f6ba.
kernel/time/clocksource.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c
index 5155dc3..ecc7adb 100644
--- a/kernel/time/clocksource.c
+++ b/kernel/time/clocksource.c
@@ -413,8 +413,6 @@ void clocksource_touch_watchdog(void)
clocksource_resume_watchdog();
}
-#ifdef CONFIG_GENERIC_TIME
-
/**
* clocksource_max_deferment - Returns max time the clocksource can be deferred
* @cs: Pointer to clocksource
@@ -456,6 +454,8 @@ static u64 clocksource_max_deferment(struct clocksource *cs)
return max_nsecs - (max_nsecs >> 5);
}
+#ifdef CONFIG_GENERIC_TIME
+
/**
* clocksource_select - Select the best clocksource available
*
--
1.5.6.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists