Basic syntax errors and other compilation errors fixed. Now to shoot for

link-time errors (e.g. udelay etc.)
This commit is contained in:
Ronald G. Minnich 2002-10-17 21:09:15 +00:00
commit 7377b062c9
8 changed files with 30 additions and 18 deletions

View file

@ -425,6 +425,7 @@ extern void compute_allocate_resource(struct pci_dev *bus, struct resource *brid
unsigned long type_mask, unsigned long type);
extern void assign_resources(struct pci_dev *bus);
extern void enumerate_static_device(void);
extern unsigned long pci_memory_base;
#include <pciconf.h>
/* linkages from devices of a type (e.g. superio devices)

View file

@ -1229,13 +1229,14 @@
#define PCI_DEVICE_ID_INTEL_82801CA_1E0 0x244e
#define PCI_DEVICE_ID_INTEL_82801CA_1F0 0x2480
#define PCI_DEVICE_ID_INTEL_82801CA_1F1 0x248b
#define PCI_DEVICE_ID_INTEL_82801CA_1D2 0x2482
#define PCI_DEVICE_ID_INTEL_82801CA_1D0 0x2482
#define PCI_DEVICE_ID_INTEL_82801CA_1F3 0x2483
#define PCI_DEVICE_ID_INTEL_82801CA_1D1 0x2484
#define PCI_DEVICE_ID_INTEL_82801CA_1F5 0x2485
#define PCI_DEVICE_ID_INTEL_82801CA_1D2 0x2487
#define PCI_DEVICE_ID_INTEL_82870_1F0 0x1461
#define PCI_DEVICE_ID_INTEL_82870_1E0 0x1461
#define PCI_DEVICE_ID_INTEL_82870_1F0 0x1460
#define PCI_DEVICE_ID_INTEL_82820FW_0 0x2440
#define PCI_DEVICE_ID_INTEL_82820FW_1 0x2442

View file

@ -44,6 +44,12 @@
#define KBC_DEFAULT_IOBASE1 0x64
#define KBC_DEFAULT_IRQ0 0x1
#define KBC_DEFAULT_IRQ1 0xc
#define HW_MONITOR_DEFAULT_IOBASE0 0x295
#define LED_OFF 0x00
#define LED_ON 0x40
#define LED_BLINK_1SEC 0x80
#define LED_BLINK_4SEC 0xC0
#if !defined(ASSEMBLY)
void w83627hf_enter_pnp(unsigned char port);