summaryrefslogtreecommitdiff
path: root/drivers/input/misc/adxl34x.h
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2024-06-10 19:42:57 +0300
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2024-06-11 21:17:44 +0300
commit6f7e4f81f738ac765318c54097a6235203073049 (patch)
tree7a67d29abb024d2345a12055b0557cb7364a399c /drivers/input/misc/adxl34x.h
parente17fb91cd4cde13001dc75ad99a378ab28dd44df (diff)
downloadlinux-6f7e4f81f738ac765318c54097a6235203073049.tar.xz
Input: adxl34x - use device core to create driver-specific device attributes
Instead of creating driver-specific device attributes with sysfs_create_group() have device core do this by setting up dev_groups pointer in the driver structure. Reviewed-by: Nuno Sa <nuno.sa@analog.com> Acked-by: Michael Hennerich <michael.hennerich@analog.com> Link: https://lore.kernel.org/r/20240610164301.1048482-1-dmitry.torokhov@gmail.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/misc/adxl34x.h')
-rw-r--r--drivers/input/misc/adxl34x.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/misc/adxl34x.h b/drivers/input/misc/adxl34x.h
index f9272a2e7a96..67e0ddc5c3eb 100644
--- a/drivers/input/misc/adxl34x.h
+++ b/drivers/input/misc/adxl34x.h
@@ -26,5 +26,6 @@ struct adxl34x *adxl34x_probe(struct device *dev, int irq,
void adxl34x_remove(struct adxl34x *ac);
extern const struct dev_pm_ops adxl34x_pm;
+extern const struct attribute_group *adxl34x_groups[];
#endif