linux/drivers/hid/hid-lcpower.c

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 *  HID driver for LC Power Model RC1000MCE
 *
 *  Copyright (c) 2011 Chris Schlund 
 *  based on hid-topseed module
 */

/*
 */

#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();