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

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
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment