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

Commit af9e0765 authored by Adrian Bunk's avatar Adrian Bunk Committed by Greg Kroah-Hartman
Browse files

Driver core: make drivers/base/core.c:setup_parent() static



This patch makes the needlessly global setup_parent() static.

Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 5ab69981
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -389,7 +389,7 @@ void device_initialize(struct device *dev)
}

#ifdef CONFIG_SYSFS_DEPRECATED
int setup_parent(struct device *dev, struct device *parent)
static int setup_parent(struct device *dev, struct device *parent)
{
	/* Set the parent to the class, not the parent device */
	/* this keeps sysfs from having a symlink to make old udevs happy */
@@ -418,7 +418,7 @@ static int virtual_device_parent(struct device *dev)
	return 0;
}

int setup_parent(struct device *dev, struct device *parent)
static int setup_parent(struct device *dev, struct device *parent)
{
	int error;