diff options
| author | Adrian Bunk <bunk@stusta.de> | 2006-11-16 20:19:44 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-12-01 17:52:01 -0500 |
| commit | af9e0765362151b27372c14d9d6dc417184182d3 (patch) | |
| tree | c314b31350c2247382b8f73bd67b058567b3454a | |
| parent | 5ab699810d46011ad2195c5916f3cbc684bfe3ee (diff) | |
Driver core: make drivers/base/core.c:setup_parent() static
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>
| -rw-r--r-- | drivers/base/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/base/core.c b/drivers/base/core.c index a29e68545462..75b45a10935a 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c | |||
| @@ -389,7 +389,7 @@ void device_initialize(struct device *dev) | |||
| 389 | } | 389 | } |
| 390 | 390 | ||
| 391 | #ifdef CONFIG_SYSFS_DEPRECATED | 391 | #ifdef CONFIG_SYSFS_DEPRECATED |
| 392 | int setup_parent(struct device *dev, struct device *parent) | 392 | static int setup_parent(struct device *dev, struct device *parent) |
| 393 | { | 393 | { |
| 394 | /* Set the parent to the class, not the parent device */ | 394 | /* Set the parent to the class, not the parent device */ |
| 395 | /* this keeps sysfs from having a symlink to make old udevs happy */ | 395 | /* 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 | return 0; | 418 | return 0; |
| 419 | } | 419 | } |
| 420 | 420 | ||
| 421 | int setup_parent(struct device *dev, struct device *parent) | 421 | static int setup_parent(struct device *dev, struct device *parent) |
| 422 | { | 422 | { |
| 423 | int error; | 423 | int error; |
| 424 | 424 | ||
