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

Commit b3e572d2 authored by Adrian Bunk's avatar Adrian Bunk Committed by Len Brown
Browse files

make drivers/acpi/scan.c:create_modalias() static



This patch makes the needlessly global create_modalias() static.

Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 70b30fb1
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -35,8 +35,9 @@ struct acpi_device_bus_id{
 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
 * char *modalias: "acpi:IBM0001:ACPI0001"
*/
int create_modalias(struct acpi_device *acpi_dev, char *modalias, int size){

static int create_modalias(struct acpi_device *acpi_dev, char *modalias,
			   int size)
{
	int len;

	if (!acpi_dev->flags.hardware_id)