diff options
Diffstat (limited to 'drivers/char/hpet.c')
-rw-r--r-- | drivers/char/hpet.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/char/hpet.c b/drivers/char/hpet.c index ba0e74ad74bb..77bf4aa217a8 100644 --- a/drivers/char/hpet.c +++ b/drivers/char/hpet.c | |||
@@ -73,7 +73,7 @@ static struct clocksource clocksource_hpet = { | |||
73 | .name = "hpet", | 73 | .name = "hpet", |
74 | .rating = 250, | 74 | .rating = 250, |
75 | .read = read_hpet, | 75 | .read = read_hpet, |
76 | .mask = 0xffffffffffffffff, | 76 | .mask = CLOCKSOURCE_MASK(64), |
77 | .mult = 0, /*to be caluclated*/ | 77 | .mult = 0, /*to be caluclated*/ |
78 | .shift = 10, | 78 | .shift = 10, |
79 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | 79 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
@@ -1007,9 +1007,15 @@ static int hpet_acpi_remove(struct acpi_device *device, int type) | |||
1007 | return -EINVAL; | 1007 | return -EINVAL; |
1008 | } | 1008 | } |
1009 | 1009 | ||
1010 | static const struct acpi_device_id hpet_device_ids[] = { | ||
1011 | {"PNP0103", 0}, | ||
1012 | {"", 0}, | ||
1013 | }; | ||
1014 | MODULE_DEVICE_TABLE(acpi, hpet_device_ids); | ||
1015 | |||
1010 | static struct acpi_driver hpet_acpi_driver = { | 1016 | static struct acpi_driver hpet_acpi_driver = { |
1011 | .name = "hpet", | 1017 | .name = "hpet", |
1012 | .ids = "PNP0103", | 1018 | .ids = hpet_device_ids, |
1013 | .ops = { | 1019 | .ops = { |
1014 | .add = hpet_acpi_add, | 1020 | .add = hpet_acpi_add, |
1015 | .remove = hpet_acpi_remove, | 1021 | .remove = hpet_acpi_remove, |