config.c (4f6b838c378a52ea3ae0b15f12ca8a20849072fa) | config.c (f9a015391e8908e68bd3147a8a5d8ac5f3ea2126) |
---|---|
1/* 2 * linux/arch/m68k/mac/config.c 3 * 4 * This file is subject to the terms and conditions of the GNU General Public 5 * License. See the file COPYING in the main directory of this archive 6 * for more details. 7 */ 8 --- 44 unchanged lines hidden (view full) --- 53 54/* The phys. video addr. - might be bogus on some machines */ 55static unsigned long mac_orig_videoaddr; 56 57extern int mac_hwclk(int, struct rtc_time *); 58extern void iop_preinit(void); 59extern void iop_init(void); 60extern void via_init(void); | 1/* 2 * linux/arch/m68k/mac/config.c 3 * 4 * This file is subject to the terms and conditions of the GNU General Public 5 * License. See the file COPYING in the main directory of this archive 6 * for more details. 7 */ 8 --- 44 unchanged lines hidden (view full) --- 53 54/* The phys. video addr. - might be bogus on some machines */ 55static unsigned long mac_orig_videoaddr; 56 57extern int mac_hwclk(int, struct rtc_time *); 58extern void iop_preinit(void); 59extern void iop_init(void); 60extern void via_init(void); |
61extern void via_init_clock(irq_handler_t func); | 61extern void via_init_clock(void); |
62extern void oss_init(void); 63extern void psc_init(void); 64extern void baboon_init(void); 65 66extern void mac_mksound(unsigned int, unsigned int); 67 68static void mac_get_model(char *str); 69static void mac_identify(void); 70static void mac_report_hardware(void); 71 | 62extern void oss_init(void); 63extern void psc_init(void); 64extern void baboon_init(void); 65 66extern void mac_mksound(unsigned int, unsigned int); 67 68static void mac_get_model(char *str); 69static void mac_identify(void); 70static void mac_report_hardware(void); 71 |
72static void __init mac_sched_init(irq_handler_t vector) | 72static void __init mac_sched_init(void) |
73{ | 73{ |
74 via_init_clock(vector); | 74 via_init_clock(); |
75} 76 77/* 78 * Parse a Macintosh-specific record in the bootinfo 79 */ 80 81int __init mac_parse_bootinfo(const struct bi_record *record) 82{ --- 1028 unchanged lines hidden --- | 75} 76 77/* 78 * Parse a Macintosh-specific record in the bootinfo 79 */ 80 81int __init mac_parse_bootinfo(const struct bi_record *record) 82{ --- 1028 unchanged lines hidden --- |