diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-08-04 14:31:16 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2022-08-25 12:37:21 +0300 |
commit | 9f4441fcbb7219b4e6ea4554f404209a433d4f52 (patch) | |
tree | 5e4971bb137c34123067f3eafe1480a8dc722a67 /drivers/hid/hid-vivaldi-common.h | |
parent | 8d9420ca9bd9bceddcfab3d0263d6a8e073396fe (diff) | |
download | linux-9f4441fcbb7219b4e6ea4554f404209a433d4f52.tar.xz |
HID: vivaldi: convert to use dev_groups
There is no need for a driver to individually add/create device groups,
the driver core will do it automatically for you. Convert the
hid-vivaldi core driver to use the dev_groups pointer instead of
manually calling the driver core to create the group and have it be
cleaned up later on by the devm core.
Cc: Jiri Kosina <jikos@kernel.org>
Cc: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Cc: linux-input@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-vivaldi-common.h')
-rw-r--r-- | drivers/hid/hid-vivaldi-common.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/hid/hid-vivaldi-common.h b/drivers/hid/hid-vivaldi-common.h index d42e82d77825..ba9adfa08a2d 100644 --- a/drivers/hid/hid-vivaldi-common.h +++ b/drivers/hid/hid-vivaldi-common.h @@ -4,13 +4,11 @@ struct hid_device; struct hid_field; -struct hid_input; struct hid_usage; void vivaldi_feature_mapping(struct hid_device *hdev, struct hid_field *field, struct hid_usage *usage); -int vivaldi_input_configured(struct hid_device *hdev, - struct hid_input *hidinput); +extern const struct attribute_group *vivaldi_attribute_groups[]; #endif /* _HID_VIVALDI_COMMON_H */ |