linux/drivers/hid/hid-tivo.c

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 *  HID driver for TiVo Slide Bluetooth remote
 *
 *  Copyright (c) 2011 Jarod Wilson <[email protected]>
 *  based on the hid-topseed driver, which is in turn, based on hid-cherry...
 */

/*
 */

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

#include "hid-ids.h"

#define HID_UP_TIVOVENDOR
#define tivo_map_key_clear(c)

static int tivo_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 tivo_devices[] =;
MODULE_DEVICE_TABLE(hid, tivo_devices);

static struct hid_driver tivo_driver =;
module_hid_driver();

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