Dmitry: I understand that I am a bit late to the party :) but I do not
agree with this change. Failure to create attributes is not sometihng
that user could cause (at least not easily) and thus would not be a
setup issue but something more severe. I believe we should fail
loading the driver so sysfs attribute breakage will be noticed as soon
as possible, instead of discovering it much much later in the process.
This reverts commit
b4222c4697b85eb1755a63434dbf32d5b1b44a1e.
Requested-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
error = sysfs_create_group(&client->dev.kobj, &mxt_attr_group);
if (error)
- dev_warn(&client->dev, "error creating sysfs entries.\n");
+ goto err_unregister_device;
return 0;
+err_unregister_device:
+ input_unregister_device(input_dev);
+ input_dev = NULL;
err_free_irq:
free_irq(client->irq, data);
err_free_object: