Skip to content

Commit

Permalink
Driver core: make drivers/base/core.c:setup_parent() static
Browse files Browse the repository at this point in the history
This patch makes the needlessly global setup_parent() static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Adrian Bunk authored and Greg Kroah-Hartman committed Dec 1, 2006
1 parent 5ab6998 commit af9e076
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/base/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit af9e076

Please sign in to comment.