diff options
Diffstat (limited to 'drivers/acpi/glue.c')
-rw-r--r-- | drivers/acpi/glue.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/acpi/glue.c b/drivers/acpi/glue.c index 40a84cc6740c..9783f400d857 100644 --- a/drivers/acpi/glue.c +++ b/drivers/acpi/glue.c | |||
@@ -105,7 +105,7 @@ acpi_handle acpi_get_child(acpi_handle parent, u64 address) | |||
105 | } | 105 | } |
106 | EXPORT_SYMBOL(acpi_get_child); | 106 | EXPORT_SYMBOL(acpi_get_child); |
107 | 107 | ||
108 | static int acpi_bind_one(struct device *dev, acpi_handle handle) | 108 | int acpi_bind_one(struct device *dev, acpi_handle handle) |
109 | { | 109 | { |
110 | struct acpi_device *acpi_dev; | 110 | struct acpi_device *acpi_dev; |
111 | acpi_status status; | 111 | acpi_status status; |
@@ -188,8 +188,9 @@ static int acpi_bind_one(struct device *dev, acpi_handle handle) | |||
188 | kfree(physical_node); | 188 | kfree(physical_node); |
189 | goto err; | 189 | goto err; |
190 | } | 190 | } |
191 | EXPORT_SYMBOL_GPL(acpi_bind_one); | ||
191 | 192 | ||
192 | static int acpi_unbind_one(struct device *dev) | 193 | int acpi_unbind_one(struct device *dev) |
193 | { | 194 | { |
194 | struct acpi_device_physical_node *entry; | 195 | struct acpi_device_physical_node *entry; |
195 | struct acpi_device *acpi_dev; | 196 | struct acpi_device *acpi_dev; |
@@ -238,6 +239,7 @@ err: | |||
238 | dev_err(dev, "Oops, 'acpi_handle' corrupt\n"); | 239 | dev_err(dev, "Oops, 'acpi_handle' corrupt\n"); |
239 | return -EINVAL; | 240 | return -EINVAL; |
240 | } | 241 | } |
242 | EXPORT_SYMBOL_GPL(acpi_unbind_one); | ||
241 | 243 | ||
242 | static int acpi_platform_notify(struct device *dev) | 244 | static int acpi_platform_notify(struct device *dev) |
243 | { | 245 | { |