15 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef _HID_VIVALDI_COMMON_H3#define _HID_VIVALDI_COMMON_H4 5struct hid_device;6struct hid_field;7struct hid_usage;8 9void vivaldi_feature_mapping(struct hid_device *hdev,10 struct hid_field *field, struct hid_usage *usage);11 12extern const struct attribute_group *vivaldi_attribute_groups[];13 14#endif /* _HID_VIVALDI_COMMON_H */15