diff options
Diffstat (limited to 'drivers/input/input.c')
| -rw-r--r-- | drivers/input/input.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/input.c b/drivers/input/input.c index 7c237e6ac711..556539d617a4 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c | |||
| @@ -1144,7 +1144,7 @@ static struct attribute_group input_dev_caps_attr_group = { | |||
| 1144 | .attrs = input_dev_caps_attrs, | 1144 | .attrs = input_dev_caps_attrs, |
| 1145 | }; | 1145 | }; |
| 1146 | 1146 | ||
| 1147 | static struct attribute_group *input_dev_attr_groups[] = { | 1147 | static const struct attribute_group *input_dev_attr_groups[] = { |
| 1148 | &input_dev_attr_group, | 1148 | &input_dev_attr_group, |
| 1149 | &input_dev_id_attr_group, | 1149 | &input_dev_id_attr_group, |
| 1150 | &input_dev_caps_attr_group, | 1150 | &input_dev_caps_attr_group, |
| @@ -1265,14 +1265,14 @@ static struct device_type input_dev_type = { | |||
| 1265 | .uevent = input_dev_uevent, | 1265 | .uevent = input_dev_uevent, |
| 1266 | }; | 1266 | }; |
| 1267 | 1267 | ||
| 1268 | static char *input_nodename(struct device *dev) | 1268 | static char *input_devnode(struct device *dev, mode_t *mode) |
| 1269 | { | 1269 | { |
| 1270 | return kasprintf(GFP_KERNEL, "input/%s", dev_name(dev)); | 1270 | return kasprintf(GFP_KERNEL, "input/%s", dev_name(dev)); |
| 1271 | } | 1271 | } |
| 1272 | 1272 | ||
| 1273 | struct class input_class = { | 1273 | struct class input_class = { |
| 1274 | .name = "input", | 1274 | .name = "input", |
| 1275 | .nodename = input_nodename, | 1275 | .devnode = input_devnode, |
| 1276 | }; | 1276 | }; |
| 1277 | EXPORT_SYMBOL_GPL(input_class); | 1277 | EXPORT_SYMBOL_GPL(input_class); |
| 1278 | 1278 | ||
