linux/drivers/hid/hid-keytouch.c

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 *  HID driver for Keytouch devices not fully compliant with HID standard
 *
 *  Copyright (c) 2011 Jiri Kosina
 */

/*
 */

#include <linux/device.h>
#include <linux/hid.h>
#include <linux/module.h>

#include "hid-ids.h"

/* Replace the broken report descriptor of this device with rather
 * a default one */
static __u8 keytouch_fixed_rdesc[] =;

static __u8 *keytouch_report_fixup(struct hid_device *hdev, __u8 *rdesc,
		unsigned int *rsize)
{}

static const struct hid_device_id keytouch_devices[] =;
MODULE_DEVICE_TABLE(hid, keytouch_devices);

static struct hid_driver keytouch_driver =;
module_hid_driver();

MODULE_DESCRIPTION();
MODULE_LICENSE();
MODULE_AUTHOR();