aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/usb/core/devices.c2
-rw-r--r--include/linux/device.h12
2 files changed, 7 insertions, 7 deletions
diff --git a/drivers/usb/core/devices.c b/drivers/usb/core/devices.c
index ef0b35731ff0..83e815d3cd52 100644
--- a/drivers/usb/core/devices.c
+++ b/drivers/usb/core/devices.c
@@ -239,7 +239,7 @@ static char *usb_dump_interface_descriptor(char *start, char *end,
239 int setno) 239 int setno)
240{ 240{
241 const struct usb_interface_descriptor *desc = &intfc->altsetting[setno].desc; 241 const struct usb_interface_descriptor *desc = &intfc->altsetting[setno].desc;
242 char *driver_name = ""; 242 const char *driver_name = "";
243 243
244 if (start > end) 244 if (start > end)
245 return start; 245 return start;
diff --git a/include/linux/device.h b/include/linux/device.h
index df94c0de53f2..fa9e6ca08f5a 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -47,7 +47,7 @@ struct class_device;
47struct class_simple; 47struct class_simple;
48 48
49struct bus_type { 49struct bus_type {
50 char * name; 50 const char * name;
51 51
52 struct subsystem subsys; 52 struct subsystem subsys;
53 struct kset drivers; 53 struct kset drivers;
@@ -98,17 +98,17 @@ extern int bus_create_file(struct bus_type *, struct bus_attribute *);
98extern void bus_remove_file(struct bus_type *, struct bus_attribute *); 98extern void bus_remove_file(struct bus_type *, struct bus_attribute *);
99 99
100struct device_driver { 100struct device_driver {
101 char * name; 101 const char * name;
102 struct bus_type * bus; 102 struct bus_type * bus;
103 103
104 struct completion unloaded; 104 struct completion unloaded;
105 struct kobject kobj; 105 struct kobject kobj;
106 struct list_head devices; 106 struct list_head devices;
107 107
108 struct module * owner; 108 struct module * owner;
109 109
110 int (*probe) (struct device * dev); 110 int (*probe) (struct device * dev);
111 int (*remove) (struct device * dev); 111 int (*remove) (struct device * dev);
112 void (*shutdown) (struct device * dev); 112 void (*shutdown) (struct device * dev);
113 int (*suspend) (struct device * dev, pm_message_t state, u32 level); 113 int (*suspend) (struct device * dev, pm_message_t state, u32 level);
114 int (*resume) (struct device * dev, u32 level); 114 int (*resume) (struct device * dev, u32 level);
@@ -142,7 +142,7 @@ extern void driver_remove_file(struct device_driver *, struct driver_attribute *
142 * device classes 142 * device classes
143 */ 143 */
144struct class { 144struct class {
145 char * name; 145 const char * name;
146 146
147 struct subsystem subsys; 147 struct subsystem subsys;
148 struct list_head children; 148 struct list_head children;
@@ -366,7 +366,7 @@ extern struct device *device_find(const char *name, struct bus_type *bus);
366/* drivers/base/platform.c */ 366/* drivers/base/platform.c */
367 367
368struct platform_device { 368struct platform_device {
369 char * name; 369 const char * name;
370 u32 id; 370 u32 id;
371 struct device dev; 371 struct device dev;
372 u32 num_resources; 372 u32 num_resources;