via.c (5a2394534b160ce18f9a705cf9de40e77648f8a2) | via.c (ddc7fd25d09678f8252c0321ef4b66e8451abe7d) |
---|---|
1/* 2 * 6522 Versatile Interface Adapter (VIA) 3 * 4 * There are two of these on the Mac II. Some IRQs are vectored 5 * via them as are assorted bits and bobs - eg RTC, ADB. 6 * 7 * CSA: Motorola seems to have removed documentation on the 6522 from 8 * their web site; try --- 14 unchanged lines hidden (view full) --- 23 */ 24 25#include <linux/types.h> 26#include <linux/kernel.h> 27#include <linux/mm.h> 28#include <linux/delay.h> 29#include <linux/init.h> 30#include <linux/module.h> | 1/* 2 * 6522 Versatile Interface Adapter (VIA) 3 * 4 * There are two of these on the Mac II. Some IRQs are vectored 5 * via them as are assorted bits and bobs - eg RTC, ADB. 6 * 7 * CSA: Motorola seems to have removed documentation on the 6522 from 8 * their web site; try --- 14 unchanged lines hidden (view full) --- 23 */ 24 25#include <linux/types.h> 26#include <linux/kernel.h> 27#include <linux/mm.h> 28#include <linux/delay.h> 29#include <linux/init.h> 30#include <linux/module.h> |
31#ifdef CONFIG_GENERIC_HARDIRQS 32#include <linux/irq.h> 33#endif |
|
31 32#include <asm/bootinfo.h> 33#include <asm/macintosh.h> 34#include <asm/macints.h> 35#include <asm/mac_via.h> 36#include <asm/mac_psc.h> 37#include <asm/mac_oss.h> 38 --- 605 unchanged lines hidden --- | 34 35#include <asm/bootinfo.h> 36#include <asm/macintosh.h> 37#include <asm/macints.h> 38#include <asm/mac_via.h> 39#include <asm/mac_psc.h> 40#include <asm/mac_oss.h> 41 --- 605 unchanged lines hidden --- |