i82092.c (e37c83c06c2690157a989df40dc99a6b61c9ea15) | i82092.c (ac8b422838046ffc26be4874a3cbae0d313f4209) |
---|---|
1/* 2 * Driver for Intel I82092AA PCI-PCMCIA bridge. 3 * 4 * (C) 2001 Red Hat, Inc. 5 * 6 * Author: Arjan Van De Ven <arjanv@redhat.com> 7 * Loosly based on i82365.c from the pcmcia-cs package 8 */ 9 10#include <linux/kernel.h> 11#include <linux/module.h> 12#include <linux/pci.h> 13#include <linux/init.h> 14#include <linux/workqueue.h> 15#include <linux/interrupt.h> 16#include <linux/device.h> 17 | 1/* 2 * Driver for Intel I82092AA PCI-PCMCIA bridge. 3 * 4 * (C) 2001 Red Hat, Inc. 5 * 6 * Author: Arjan Van De Ven <arjanv@redhat.com> 7 * Loosly based on i82365.c from the pcmcia-cs package 8 */ 9 10#include <linux/kernel.h> 11#include <linux/module.h> 12#include <linux/pci.h> 13#include <linux/init.h> 14#include <linux/workqueue.h> 15#include <linux/interrupt.h> 16#include <linux/device.h> 17 |
18#include <pcmcia/cs_types.h> | |
19#include <pcmcia/ss.h> 20#include <pcmcia/cs.h> 21 22#include <asm/system.h> 23#include <asm/io.h> 24 25#include "i82092aa.h" 26#include "i82365.h" --- 688 unchanged lines hidden --- | 18#include <pcmcia/ss.h> 19#include <pcmcia/cs.h> 20 21#include <asm/system.h> 22#include <asm/io.h> 23 24#include "i82092aa.h" 25#include "i82365.h" --- 688 unchanged lines hidden --- |