>From 3e27e90049354a0f52fd006970fc8ecd80b08152 Mon Sep 17 00:00:00 2001 From: Liu Jinsong <jinsong.liu@xxxxxxxxx> Date: Sat, 16 Feb 2013 00:42:45 +0800 Subject: [PATCH] xen/acpi: updates the argument of .remove operation of xen cpu/mem hotplug Rafael removed useless type argument of acpi driver .remove operation. This patch updates the argument of .remove operation of xen cpu/memory driver accordingly. Signed-off-by: Liu Jinsong <jinsong.liu@xxxxxxxxx> --- drivers/xen/xen-acpi-cpuhotplug.c | 2 +- drivers/xen/xen-acpi-memhotplug.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/xen/xen-acpi-cpuhotplug.c b/drivers/xen/xen-acpi-cpuhotplug.c index acc5b12..7578279 100644 --- a/drivers/xen/xen-acpi-cpuhotplug.c +++ b/drivers/xen/xen-acpi-cpuhotplug.c @@ -113,7 +113,7 @@ static int __cpuinit xen_acpi_processor_add(struct acpi_device *device) return ret; } -static int xen_acpi_processor_remove(struct acpi_device *device, int type) +static int xen_acpi_processor_remove(struct acpi_device *device) { struct acpi_processor *pr; diff --git a/drivers/xen/xen-acpi-memhotplug.c b/drivers/xen/xen-acpi-memhotplug.c index 164287b..853b12d 100644 --- a/drivers/xen/xen-acpi-memhotplug.c +++ b/drivers/xen/xen-acpi-memhotplug.c @@ -329,7 +329,7 @@ static int xen_acpi_memory_device_add(struct acpi_device *device) return result; } -static int xen_acpi_memory_device_remove(struct acpi_device *device, int type) +static int xen_acpi_memory_device_remove(struct acpi_device *device) { struct acpi_memory_device *mem_device = NULL; -- 1.7.1
Attachment:
0001-xen-acpi-updates-the-argument-of-.remove-operation-o.patch
Description: 0001-xen-acpi-updates-the-argument-of-.remove-operation-o.patch