Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 91e4d5a1 authored by Jeff Garzik's avatar Jeff Garzik Committed by Jeff Garzik
Browse files

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



Commit 6b66d958 should not have changed
EXPORT_SYMBOL_GPL to EXPORT_SYMBOL.

Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent e91df93e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ int register_acpi_bus_type(struct acpi_bus_type *type)
	}
	return -ENODEV;
}
EXPORT_SYMBOL(register_acpi_bus_type);
EXPORT_SYMBOL_GPL(register_acpi_bus_type);

int unregister_acpi_bus_type(struct acpi_bus_type *type)
{
@@ -55,7 +55,7 @@ int unregister_acpi_bus_type(struct acpi_bus_type *type)
	}
	return -ENODEV;
}
EXPORT_SYMBOL(unregister_acpi_bus_type);
EXPORT_SYMBOL_GPL(unregister_acpi_bus_type);

static struct acpi_bus_type *acpi_get_bus_type(struct bus_type *type)
{