提交 af9e0765 编写于 作者: A Adrian Bunk 提交者: Greg Kroah-Hartman

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

This patch makes the needlessly global setup_parent() static.
Signed-off-by: NAdrian Bunk <bunk@stusta.de>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 5ab69981
...@@ -389,7 +389,7 @@ void device_initialize(struct device *dev) ...@@ -389,7 +389,7 @@ void device_initialize(struct device *dev)
} }
#ifdef CONFIG_SYSFS_DEPRECATED #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 */ /* Set the parent to the class, not the parent device */
/* this keeps sysfs from having a symlink to make old udevs happy */ /* this keeps sysfs from having a symlink to make old udevs happy */
...@@ -418,7 +418,7 @@ static int virtual_device_parent(struct device *dev) ...@@ -418,7 +418,7 @@ static int virtual_device_parent(struct device *dev)
return 0; return 0;
} }
int setup_parent(struct device *dev, struct device *parent) static int setup_parent(struct device *dev, struct device *parent)
{ {
int error; int error;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册