m68knommu: cleanup 68VZ328 init code

Removed header includes not needed.
Remove use of old m68knommu timer function pointers.

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Greg Ungerer and committed by Linus Torvalds 65fde4c6 f1353707

+1 -11
+1 -11
arch/m68knommu/platform/68VZ328/config.c
··· 16 16 17 17 #include <linux/types.h> 18 18 #include <linux/kernel.h> 19 - #include <linux/mm.h> 20 - #include <linux/tty.h> 21 - #include <linux/console.h> 22 19 #include <linux/kd.h> 23 20 #include <linux/netdevice.h> 24 21 #include <linux/interrupt.h> 22 + #include <linux/irq.h> 25 23 26 - #include <asm/setup.h> 27 24 #include <asm/system.h> 28 25 #include <asm/pgtable.h> 29 - #include <asm/irq.h> 30 26 #include <asm/machdep.h> 31 27 #include <asm/MC68VZ328.h> 32 28 #include <asm/bootstd.h> ··· 33 37 34 38 /***************************************************************************/ 35 39 36 - void m68328_timer_init(irq_handler_t timer_routine); 37 - void m68328_timer_tick(void); 38 - unsigned long m68328_timer_gettimeoffset(void); 39 40 void m68328_timer_gettod(int *year, int *mon, int *day, int *hour, int *min, int *sec); 40 41 41 42 /***************************************************************************/ ··· 186 193 187 194 init_hardware(command, size); 188 195 189 - mach_sched_init = (void *) m68328_timer_init; 190 - mach_tick = m68328_timer_tick; 191 - mach_gettimeoffset = m68328_timer_gettimeoffset; 192 196 mach_gettod = m68328_timer_gettod; 193 197 mach_reset = m68vz328_reset; 194 198 }