1 #ifndef _M68KNOMMU_MACHDEP_H
2 #define _M68KNOMMU_MACHDEP_H
4 #include <linux/interrupt.h>
6 extern void (*mach_sched_init
) (irq_handler_t handler
);
7 /* machine dependent timer functions */
8 extern unsigned long (*mach_gettimeoffset
)(void);
9 extern void (*mach_gettod
)(int *year
, int *mon
, int *day
, int *hour
,
11 extern int (*mach_set_clock_mmss
)(unsigned long);
13 /* machine dependent power off functions */
14 extern void (*mach_reset
)( void );
15 extern void (*mach_halt
)( void );
16 extern void (*mach_power_off
)( void );
18 extern void config_BSP(char *command
, int len
);
19 extern void (*mach_tick
)(void);
21 #endif /* _M68KNOMMU_MACHDEP_H */