Skip to content

Commit

Permalink
[IA64] Use new acpi_device_id struct for HID init in ia64/hp/common/s…
Browse files Browse the repository at this point in the history
…ba_iommu.c

Forgot to adjust this one with the acpi autoloading patches
in commit 8c8eb78

Acked-by: Myron Stowe <myron.stowe@hp.com>
Acked-by: Len Brown <len.brown@intel.com>
Signed-off-by: Thomas Renninger <trenn@suse.de>
Signed-off-by: Tony Luck <tony.luck@intel.com>
  • Loading branch information
Thomas Renninger authored and Tony Luck committed Jul 27, 2007
1 parent 074ff85 commit 7091138
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion arch/ia64/hp/common/sba_iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -2015,9 +2015,14 @@ acpi_sba_ioc_add(struct acpi_device *device)
return 0;
}

static const struct acpi_device_id hp_ioc_iommu_device_ids[] = {
{"HWP0001", 0},
{"HWP0004", 0},
{"", 0},
};
static struct acpi_driver acpi_sba_ioc_driver = {
.name = "IOC IOMMU Driver",
.ids = "HWP0001,HWP0004",
.ids = hp_ioc_iommu_device_ids,
.ops = {
.add = acpi_sba_ioc_add,
},
Expand Down

0 comments on commit 7091138

Please sign in to comment.