diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:22:46 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-28 13:19:49 -0800 |
commit | da095fd3d5063f2dd03468d71f7df39a0430d86f (patch) | |
tree | 39ddead35304eb9bf89b86157c3c5df3c95d3cdd /drivers/acpi/hed.c | |
parent | 15856ad50bf5ea02a5ee22399c036d49e7e1124d (diff) | |
download | linux-da095fd3d5063f2dd03468d71f7df39a0430d86f.tar.bz2 |
acpi: remove use of __devinit
CONFIG_HOTPLUG is going away as an option so __devinit is no longer
needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Acked-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/acpi/hed.c')
-rw-r--r-- | drivers/acpi/hed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/hed.c b/drivers/acpi/hed.c index 20a0f2c3ca3b..0ec28a38f607 100644 --- a/drivers/acpi/hed.c +++ b/drivers/acpi/hed.c @@ -61,7 +61,7 @@ static void acpi_hed_notify(struct acpi_device *device, u32 event) blocking_notifier_call_chain(&acpi_hed_notify_list, 0, NULL); } -static int __devinit acpi_hed_add(struct acpi_device *device) +static int acpi_hed_add(struct acpi_device *device) { /* Only one hardware error device */ if (hed_handle) |