Skip to content

Commit

Permalink
ACPI: remove use of __devexit
Browse files Browse the repository at this point in the history
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  • Loading branch information
Bill Pemberton authored and Rafael J. Wysocki committed Nov 21, 2012
1 parent 876ab79 commit b59bc2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/acpi/apei/ghes.c
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,7 @@ static int __devinit ghes_probe(struct platform_device *ghes_dev)
return rc;
}

static int __devexit ghes_remove(struct platform_device *ghes_dev)
static int ghes_remove(struct platform_device *ghes_dev)
{
struct ghes *ghes;
struct acpi_hest_generic *generic;
Expand Down
2 changes: 1 addition & 1 deletion drivers/acpi/hed.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ static int __devinit acpi_hed_add(struct acpi_device *device)
return 0;
}

static int __devexit acpi_hed_remove(struct acpi_device *device, int type)
static int acpi_hed_remove(struct acpi_device *device, int type)
{
hed_handle = NULL;
return 0;
Expand Down

0 comments on commit b59bc2f

Please sign in to comment.