public inbox for linux-sh@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 03/05] sh: fix no sys_timer case
@ 2009-01-22  9:55 Magnus Damm
  0 siblings, 0 replies; only message in thread
From: Magnus Damm @ 2009-01-22  9:55 UTC (permalink / raw)
  To: linux-sh

From: Magnus Damm <damm@igel.co.jp>

Handle the case with a sys_timer set to NULL.

Signed-off-by: Magnus Damm <damm@igel.co.jp>
---

 arch/sh/kernel/time_32.c |   13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

--- 0015/arch/sh/kernel/time_32.c
+++ work/arch/sh/kernel/time_32.c	2009-01-22 16:24:35.000000000 +0900
@@ -18,6 +18,7 @@
 #include <linux/clockchips.h>
 #include <linux/mc146818rtc.h>	/* for rtc_lock */
 #include <linux/smp.h>
+#include <linux/platform_device.h>
 #include <asm/clock.h>
 #include <asm/rtc.h>
 #include <asm/timer.h>
@@ -181,7 +182,12 @@ static struct sysdev_class timer_sysclas
 
 static int __init timer_init_sysfs(void)
 {
-	int ret = sysdev_class_register(&timer_sysclass);
+	int ret;
+
+	if (!sys_timer)
+		return 0;
+
+	ret = sysdev_class_register(&timer_sysclass);
 	if (ret != 0)
 		return ret;
 
@@ -230,5 +236,8 @@ void __init time_init(void)
 	 * initialized for us.
 	 */
 	sys_timer = get_sys_timer();
-	printk(KERN_INFO "Using %s for system timer\n", sys_timer->name);
+	if (sys_timer)
+		pr_info("Using %s for system timer\n", sys_timer->name);
+	else
+		pr_warning("System timer missing, boot will fail.\n");
 }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-01-22  9:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-22  9:55 [PATCH 03/05] sh: fix no sys_timer case Magnus Damm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox