[PATCH] INPUT: rename input_dev_class to input_class to be correct.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
@@ -686,7 +686,7 @@ static struct input_handle *evdev_connect(struct input_handler *handler, struct
|
||||
|
||||
evdev_table[minor] = evdev;
|
||||
|
||||
class_device_create(&input_dev_class, &dev->cdev,
|
||||
class_device_create(&input_class, &dev->cdev,
|
||||
MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + minor),
|
||||
dev->cdev.dev, "event%d", minor);
|
||||
|
||||
@@ -698,7 +698,7 @@ static void evdev_disconnect(struct input_handle *handle)
|
||||
struct evdev *evdev = handle->private;
|
||||
struct evdev_list *list;
|
||||
|
||||
class_device_destroy(&input_dev_class,
|
||||
class_device_destroy(&input_class,
|
||||
MKDEV(INPUT_MAJOR, EVDEV_MINOR_BASE + evdev->minor));
|
||||
evdev->exist = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user