Input: exc3000 - use device core to create driver-specific device attributes
authorDmitry Torokhov <dmitry.torokhov@gmail.com>
Sat, 29 Jul 2023 00:51:19 +0000 (17:51 -0700)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>
Wed, 6 Sep 2023 21:29:01 +0000 (14:29 -0700)
Instead of creating driver-specific device attributes with
devm_device_add_group() have device core do this by setting up dev_groups
pointer in the driver structure.

Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://lore.kernel.org/r/20230729005133.1095051-10-dmitry.torokhov@gmail.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
drivers/input/touchscreen/exc3000.c

index e3f6d21b3c1b3d5510682d883279c40e47db37ce..654845c0cdcd79898a8b6179f9d3035e23272f40 100644 (file)
@@ -324,16 +324,13 @@ static ssize_t type_show(struct device *dev,
 }
 static DEVICE_ATTR_RO(type);
 
-static struct attribute *sysfs_attrs[] = {
+static struct attribute *exc3000_attrs[] = {
        &dev_attr_fw_version.attr,
        &dev_attr_model.attr,
        &dev_attr_type.attr,
        NULL
 };
-
-static struct attribute_group exc3000_attribute_group = {
-       .attrs = sysfs_attrs
-};
+ATTRIBUTE_GROUPS(exc3000);
 
 static int exc3000_probe(struct i2c_client *client)
 {
@@ -436,10 +433,6 @@ static int exc3000_probe(struct i2c_client *client)
 
        i2c_set_clientdata(client, data);
 
-       error = devm_device_add_group(&client->dev, &exc3000_attribute_group);
-       if (error)
-               return error;
-
        return 0;
 }
 
@@ -464,6 +457,7 @@ MODULE_DEVICE_TABLE(of, exc3000_of_match);
 static struct i2c_driver exc3000_driver = {
        .driver = {
                .name   = "exc3000",
+               .dev_groups = exc3000_groups,
                .of_match_table = of_match_ptr(exc3000_of_match),
        },
        .id_table       = exc3000_id,