HID: wacom: Set default device name to value from wacom->features
Allocated input devices should not use the 'pen_name' by default since we do not know at that point in time if that is an appropriate choice of name. Instead, use the (tool-agnostic) name that is stored in the device's 'wacom_features' structure. This also has the nice side-effect of requring us to be explicit about the naming of the pen device, as we already are for touch and pad devices. Signed-off-by: Jason Gerecke <jason.gerecke@wacom.com> Signed-off-by: Jiri Kosina <jkosina@suse.com>
This commit is contained in:
parent
d9f2d203ab
commit
2bdd163cfd
1 changed files with 2 additions and 1 deletions
|
@ -1130,7 +1130,7 @@ static struct input_dev *wacom_allocate_input(struct wacom *wacom)
|
||||||
if (!input_dev)
|
if (!input_dev)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
input_dev->name = wacom_wac->pen_name;
|
input_dev->name = wacom_wac->features.name;
|
||||||
input_dev->phys = hdev->phys;
|
input_dev->phys = hdev->phys;
|
||||||
input_dev->dev.parent = &hdev->dev;
|
input_dev->dev.parent = &hdev->dev;
|
||||||
input_dev->open = wacom_open;
|
input_dev->open = wacom_open;
|
||||||
|
@ -1183,6 +1183,7 @@ static int wacom_allocate_inputs(struct wacom *wacom)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wacom_wac->pen_input->name = wacom_wac->pen_name;
|
||||||
wacom_wac->touch_input->name = wacom_wac->touch_name;
|
wacom_wac->touch_input->name = wacom_wac->touch_name;
|
||||||
wacom_wac->pad_input->name = wacom_wac->pad_name;
|
wacom_wac->pad_input->name = wacom_wac->pad_name;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue