mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 12:30:54 +07:00
Input: atmel_mxt_ts - warn if sysfs could not be created
If sysfs entry creation fails, the driver is still usable, so don't just abort probe. Just warn and continue. Signed-off-by: Daniel Kurtz <djkurtz@chromium.org> Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
This commit is contained in:
parent
e1e1658d2e
commit
6399003800
@ -1172,13 +1172,10 @@ static int __devinit mxt_probe(struct i2c_client *client,
|
||||
|
||||
error = sysfs_create_group(&client->dev.kobj, &mxt_attr_group);
|
||||
if (error)
|
||||
goto err_unregister_device;
|
||||
dev_warn(&client->dev, "error creating sysfs entries.\n");
|
||||
|
||||
return 0;
|
||||
|
||||
err_unregister_device:
|
||||
input_unregister_device(input_dev);
|
||||
input_dev = NULL;
|
||||
err_free_irq:
|
||||
free_irq(client->irq, data);
|
||||
err_free_object:
|
||||
|
Loading…
Reference in New Issue
Block a user