Commit 91e4d5a1d7d11ca0b08803a11cb8dc866d2d611f

Authored by Jeff Garzik
Committed by Jeff Garzik
1 parent e91df93ebd

drivers/acpi/glue: revert accidental license-related 6b66d95895c bits

Commit 6b66d95895c149cbc04d4fac5a2f5477c543a8ae should not have changed
EXPORT_SYMBOL_GPL to EXPORT_SYMBOL.

Signed-off-by: Jeff Garzik <jgarzik@redhat.com>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

... ... @@ -39,7 +39,7 @@
39 39 }
40 40 return -ENODEV;
41 41 }
42   -EXPORT_SYMBOL(register_acpi_bus_type);
  42 +EXPORT_SYMBOL_GPL(register_acpi_bus_type);
43 43  
44 44 int unregister_acpi_bus_type(struct acpi_bus_type *type)
45 45 {
... ... @@ -55,7 +55,7 @@
55 55 }
56 56 return -ENODEV;
57 57 }
58   -EXPORT_SYMBOL(unregister_acpi_bus_type);
  58 +EXPORT_SYMBOL_GPL(unregister_acpi_bus_type);
59 59  
60 60 static struct acpi_bus_type *acpi_get_bus_type(struct bus_type *type)
61 61 {