diff options
| author | Andy Grover <agrover@groveronline.com> | 2003-03-10 18:16:45 -0800 |
|---|---|---|
| committer | Andy Grover <agrover@groveronline.com> | 2003-03-10 18:16:45 -0800 |
| commit | e1b5df6acb6b7279eec2ff4b36fd49378c13a989 (patch) | |
| tree | 06f861f383b7c6d2aa1e217031e587451dc380ee | |
| parent | b84ba662012987f8e720f0270c141bb01597902d (diff) | |
| parent | 35d58bb146b5296090a6e7e5e77b45e9a9315e81 (diff) | |
Merge groveronline.com:/root/bk/linux-2.5
into groveronline.com:/root/bk/linux-acpi
| -rw-r--r-- | drivers/acpi/osl.c | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index 2c3d2e73ccd2..863e20d173cc 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c @@ -581,24 +581,32 @@ acpi_os_derive_pci_id ( acpi_status acpi_os_write_pci_configuration ( - acpi_pci_id *pci_id, - u32 reg, - acpi_integer value, - u32 width) + struct acpi_pci_id *pci_id, + u32 reg, + acpi_integer value, + u32 width) { return (AE_SUPPORT); } acpi_status acpi_os_read_pci_configuration ( - acpi_pci_id *pci_id, - u32 reg, - void *value, - u32 width) + struct acpi_pci_id *pci_id, + u32 reg, + void *value, + u32 width) { return (AE_SUPPORT); } +void +acpi_os_derive_pci_id ( + acpi_handle rhandle, /* upper bound */ + acpi_handle chandle, /* current node */ + struct acpi_pci_id **id) +{ +} + #endif /*CONFIG_ACPI_PCI*/ static void |
