From: Daniel Palmer Date: Wed, 2 Apr 2014 14:43:12 +0000 (+0900) Subject: m68knommu: Fix mach_sched_init for EZ and VZ DragonBall chips X-Git-Tag: next-20140506~90^2~1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c93733bd36eef906c7d9c12d067bc36ebb913cf1;p=karo-tx-linux.git m68knommu: Fix mach_sched_init for EZ and VZ DragonBall chips Signed-off-by: Daniel Palmer Signed-off-by: Greg Ungerer --- diff --git a/arch/m68k/platform/68000/m68EZ328.c b/arch/m68k/platform/68000/m68EZ328.c index 332b5e8605fc..21952906e9e2 100644 --- a/arch/m68k/platform/68000/m68EZ328.c +++ b/arch/m68k/platform/68000/m68EZ328.c @@ -69,7 +69,8 @@ void __init config_BSP(char *command, int len) if (p) strcpy(p,command); else command[0] = 0; #endif - + + mach_sched_init = hw_timer_init; mach_hwclk = m68328_hwclk; mach_reset = m68ez328_reset; } diff --git a/arch/m68k/platform/68000/m68VZ328.c b/arch/m68k/platform/68000/m68VZ328.c index fd6658358af1..0e5e5a10a021 100644 --- a/arch/m68k/platform/68000/m68VZ328.c +++ b/arch/m68k/platform/68000/m68VZ328.c @@ -182,6 +182,7 @@ void __init config_BSP(char *command, int size) init_hardware(command, size); + mach_sched_init = hw_timer_init; mach_hwclk = m68328_hwclk; mach_reset = m68vz328_reset; }