diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-12-21 18:11:38 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-03 18:57:15 -0500 |
commit | 1850514b3ebde0f5eeedbe918a7d0d344b752653 (patch) | |
tree | a208e16ed4d49a6054269d70fd1c5d55bf87d696 /drivers/clocksource/acpi_pm.c | |
parent | 163247c1d274279aa4ac1aa0891858c7a50195c0 (diff) |
Drivers: clocksource: remove __dev* attributes.
CONFIG_HOTPLUG is going away as an option. As a result, the __dev*
markings need to be removed.
This change removes the use of __devinit, __devexit_p, __devinitdata,
__devinitconst, and __devexit from these drivers.
Based on patches originally written by Bill Pemberton, but redone by me
in order to handle some of the coding style issues better, by hand.
Cc: Bill Pemberton <wfp5p@virginia.edu>
Cc: John Stultz <johnstul@us.ibm.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/clocksource/acpi_pm.c')
-rw-r--r-- | drivers/clocksource/acpi_pm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/clocksource/acpi_pm.c b/drivers/clocksource/acpi_pm.c index 5d1b9268bcaf..6efe4d1ab3aa 100644 --- a/drivers/clocksource/acpi_pm.c +++ b/drivers/clocksource/acpi_pm.c | |||
@@ -73,7 +73,7 @@ static struct clocksource clocksource_acpi_pm = { | |||
73 | 73 | ||
74 | 74 | ||
75 | #ifdef CONFIG_PCI | 75 | #ifdef CONFIG_PCI |
76 | static int __devinitdata acpi_pm_good; | 76 | static int acpi_pm_good; |
77 | static int __init acpi_pm_good_setup(char *__str) | 77 | static int __init acpi_pm_good_setup(char *__str) |
78 | { | 78 | { |
79 | acpi_pm_good = 1; | 79 | acpi_pm_good = 1; |
@@ -102,7 +102,7 @@ static inline void acpi_pm_need_workaround(void) | |||
102 | * incorrect when read). As a result, the ACPI free running count up | 102 | * incorrect when read). As a result, the ACPI free running count up |
103 | * timer specification is violated due to erroneous reads. | 103 | * timer specification is violated due to erroneous reads. |
104 | */ | 104 | */ |
105 | static void __devinit acpi_pm_check_blacklist(struct pci_dev *dev) | 105 | static void acpi_pm_check_blacklist(struct pci_dev *dev) |
106 | { | 106 | { |
107 | if (acpi_pm_good) | 107 | if (acpi_pm_good) |
108 | return; | 108 | return; |
@@ -120,7 +120,7 @@ static void __devinit acpi_pm_check_blacklist(struct pci_dev *dev) | |||
120 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3, | 120 | DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3, |
121 | acpi_pm_check_blacklist); | 121 | acpi_pm_check_blacklist); |
122 | 122 | ||
123 | static void __devinit acpi_pm_check_graylist(struct pci_dev *dev) | 123 | static void acpi_pm_check_graylist(struct pci_dev *dev) |
124 | { | 124 | { |
125 | if (acpi_pm_good) | 125 | if (acpi_pm_good) |
126 | return; | 126 | return; |