// SPDX-License-Identifier: GPL-2.0-or-later /* * HID driver for TopSeed Cyberlink remote * * Copyright (c) 2008 Lev Babiev * based on hid-cherry driver * * Modified to also support BTC "Emprex 3009URF III Vista MCE Remote" by * Wayne Thomas 2010. * * Modified to support Conceptronic CLLRCMCE by * Kees Bakker 2010. */ /* */ #include <linux/device.h> #include <linux/hid.h> #include <linux/module.h> #include "hid-ids.h" #define ts_map_key_clear(c) … static int ts_input_mapping(struct hid_device *hdev, struct hid_input *hi, struct hid_field *field, struct hid_usage *usage, unsigned long **bit, int *max) { … } static const struct hid_device_id ts_devices[] = …; MODULE_DEVICE_TABLE(hid, ts_devices); static struct hid_driver ts_driver = …; module_hid_driver(…) …; MODULE_DESCRIPTION(…) …; MODULE_LICENSE(…) …;