diff options
author | Len Brown <len.brown@intel.com> | 2007-07-25 07:36:53 +0200 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-07-25 07:36:53 +0200 |
commit | 323ef30af3a0da47cc761b04b262d98d0fe79126 (patch) | |
tree | 37636b25acc557969aee51f1fe3e3cbc7a9760ea /drivers/char | |
parent | Pull d-states into release branch (diff) | |
parent | ACPI: autoload modules - Create __mod_acpi_device_table symbol for all ACPI d... (diff) | |
download | linux-323ef30af3a0da47cc761b04b262d98d0fe79126.tar.xz linux-323ef30af3a0da47cc761b04b262d98d0fe79126.zip |
Pull auto-load-modules into release branch
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/hpet.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/char/hpet.c b/drivers/char/hpet.c index ba0e74ad74bb..9a2694e5f8b9 100644 --- a/drivers/char/hpet.c +++ b/drivers/char/hpet.c @@ -1007,9 +1007,15 @@ static int hpet_acpi_remove(struct acpi_device *device, int type) return -EINVAL; } +static const struct acpi_device_id hpet_device_ids[] = { + {"PNP0103", 0}, + {"", 0}, +}; +MODULE_DEVICE_TABLE(acpi, hpet_device_ids); + static struct acpi_driver hpet_acpi_driver = { .name = "hpet", - .ids = "PNP0103", + .ids = hpet_device_ids, .ops = { .add = hpet_acpi_add, .remove = hpet_acpi_remove, |