ACPI: Remove useless type argument of driver .remove() operation
[deliverable/linux.git] / drivers / acpi / container.c
index cc79d3e53a3919f9cf84df850ae9fc846549fb45..cc0bf4613e0d62d101b745b9e0f30fd9cf603af3 100644 (file)
@@ -52,7 +52,7 @@ MODULE_DESCRIPTION("ACPI container driver");
 MODULE_LICENSE("GPL");
 
 static int acpi_container_add(struct acpi_device *device);
-static int acpi_container_remove(struct acpi_device *device, int type);
+static int acpi_container_remove(struct acpi_device *device);
 
 static const struct acpi_device_id container_device_ids[] = {
        {"ACPI0004", 0},
@@ -125,7 +125,7 @@ static int acpi_container_add(struct acpi_device *device)
        return 0;
 }
 
-static int acpi_container_remove(struct acpi_device *device, int type)
+static int acpi_container_remove(struct acpi_device *device)
 {
        acpi_status status = AE_OK;
        struct acpi_container *pc = NULL;
This page took 0.027021 seconds and 5 git commands to generate.