diff options
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/core.c | 5 | ||||
-rw-r--r-- | drivers/base/cpu.c | 2 | ||||
-rw-r--r-- | drivers/base/firmware_class.c | 1 | ||||
-rw-r--r-- | drivers/base/power/Makefile | 2 | ||||
-rw-r--r-- | drivers/base/power/power.h | 4 | ||||
-rw-r--r-- | drivers/base/power/shutdown.c | 2 |
6 files changed, 6 insertions, 10 deletions
diff --git a/drivers/base/core.c b/drivers/base/core.c index 3599ab2506d2..e6738bcbe5a9 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c | |||
@@ -24,8 +24,6 @@ | |||
24 | #include "base.h" | 24 | #include "base.h" |
25 | #include "power/power.h" | 25 | #include "power/power.h" |
26 | 26 | ||
27 | extern const char *kobject_actions[]; | ||
28 | |||
29 | int (*platform_notify)(struct device * dev) = NULL; | 27 | int (*platform_notify)(struct device * dev) = NULL; |
30 | int (*platform_notify_remove)(struct device * dev) = NULL; | 28 | int (*platform_notify_remove)(struct device * dev) = NULL; |
31 | 29 | ||
@@ -680,8 +678,7 @@ static int device_add_class_symlinks(struct device *dev) | |||
680 | if (error) | 678 | if (error) |
681 | goto out_subsys; | 679 | goto out_subsys; |
682 | } | 680 | } |
683 | /* only bus-device parents get a "device"-link */ | 681 | if (dev->parent) { |
684 | if (dev->parent && dev->parent->bus) { | ||
685 | error = sysfs_create_link(&dev->kobj, &dev->parent->kobj, | 682 | error = sysfs_create_link(&dev->kobj, &dev->parent->kobj, |
686 | "device"); | 683 | "device"); |
687 | if (error) | 684 | if (error) |
diff --git a/drivers/base/cpu.c b/drivers/base/cpu.c index fe7ef3394144..40545071e3c9 100644 --- a/drivers/base/cpu.c +++ b/drivers/base/cpu.c | |||
@@ -53,7 +53,7 @@ static ssize_t store_online(struct sys_device *dev, const char *buf, | |||
53 | ret = count; | 53 | ret = count; |
54 | return ret; | 54 | return ret; |
55 | } | 55 | } |
56 | static SYSDEV_ATTR(online, 0600, show_online, store_online); | 56 | static SYSDEV_ATTR(online, 0644, show_online, store_online); |
57 | 57 | ||
58 | static void __devinit register_cpu_control(struct cpu *cpu) | 58 | static void __devinit register_cpu_control(struct cpu *cpu) |
59 | { | 59 | { |
diff --git a/drivers/base/firmware_class.c b/drivers/base/firmware_class.c index 53f0ee6f3016..b24efd4e3e3d 100644 --- a/drivers/base/firmware_class.c +++ b/drivers/base/firmware_class.c | |||
@@ -232,6 +232,7 @@ fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size) | |||
232 | /** | 232 | /** |
233 | * firmware_data_write - write method for firmware | 233 | * firmware_data_write - write method for firmware |
234 | * @kobj: kobject for the device | 234 | * @kobj: kobject for the device |
235 | * @bin_attr: bin_attr structure | ||
235 | * @buffer: buffer being written | 236 | * @buffer: buffer being written |
236 | * @offset: buffer offset for write in total data store area | 237 | * @offset: buffer offset for write in total data store area |
237 | * @count: buffer size | 238 | * @count: buffer size |
diff --git a/drivers/base/power/Makefile b/drivers/base/power/Makefile index 966a5e287415..9caeaea753a3 100644 --- a/drivers/base/power/Makefile +++ b/drivers/base/power/Makefile | |||
@@ -1,5 +1,5 @@ | |||
1 | obj-y := shutdown.o | 1 | obj-y := shutdown.o |
2 | obj-$(CONFIG_PM) += main.o suspend.o resume.o sysfs.o | 2 | obj-$(CONFIG_PM_SLEEP) += main.o suspend.o resume.o sysfs.o |
3 | obj-$(CONFIG_PM_TRACE) += trace.o | 3 | obj-$(CONFIG_PM_TRACE) += trace.o |
4 | 4 | ||
5 | ifeq ($(CONFIG_DEBUG_DRIVER),y) | 5 | ifeq ($(CONFIG_DEBUG_DRIVER),y) |
diff --git a/drivers/base/power/power.h b/drivers/base/power/power.h index 591a0dd5deee..8ba0830cbc03 100644 --- a/drivers/base/power/power.h +++ b/drivers/base/power/power.h | |||
@@ -5,7 +5,7 @@ | |||
5 | extern void device_shutdown(void); | 5 | extern void device_shutdown(void); |
6 | 6 | ||
7 | 7 | ||
8 | #ifdef CONFIG_PM | 8 | #ifdef CONFIG_PM_SLEEP |
9 | 9 | ||
10 | /* | 10 | /* |
11 | * main.c | 11 | * main.c |
@@ -62,7 +62,7 @@ extern int resume_device(struct device *); | |||
62 | */ | 62 | */ |
63 | extern int suspend_device(struct device *, pm_message_t); | 63 | extern int suspend_device(struct device *, pm_message_t); |
64 | 64 | ||
65 | #else /* CONFIG_PM */ | 65 | #else /* CONFIG_PM_SLEEP */ |
66 | 66 | ||
67 | 67 | ||
68 | static inline int device_pm_add(struct device * dev) | 68 | static inline int device_pm_add(struct device * dev) |
diff --git a/drivers/base/power/shutdown.c b/drivers/base/power/shutdown.c index a47ee1b70d20..56e8eaaac012 100644 --- a/drivers/base/power/shutdown.c +++ b/drivers/base/power/shutdown.c | |||
@@ -44,7 +44,5 @@ void device_shutdown(void) | |||
44 | dev->driver->shutdown(dev); | 44 | dev->driver->shutdown(dev); |
45 | } | 45 | } |
46 | } | 46 | } |
47 | |||
48 | sysdev_shutdown(); | ||
49 | } | 47 | } |
50 | 48 | ||