linux/drivers/hid/hid-petalynx.c

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 *  HID driver for some petalynx "special" devices
 *
 *  Copyright (c) 1999 Andreas Gal
 *  Copyright (c) 2000-2005 Vojtech Pavlik <[email protected]>
 *  Copyright (c) 2005 Michael Haboustak <[email protected]> for Concept2, Inc
 *  Copyright (c) 2006-2007 Jiri Kosina
 *  Copyright (c) 2008 Jiri Slaby
 */

/*
 */

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

#include "hid-ids.h"

/* Petalynx Maxter Remote has maximum for consumer page set too low */
static __u8 *pl_report_fixup(struct hid_device *hdev, __u8 *rdesc,
		unsigned int *rsize)
{}

#define pl_map_key_clear(c)
static int pl_input_mapping(struct hid_device *hdev, struct hid_input *hi,
		struct hid_field *field, struct hid_usage *usage,
		unsigned long **bit, int *max)
{}

static int pl_probe(struct hid_device *hdev, const struct hid_device_id *id)
{}

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

static struct hid_driver pl_driver =;
module_hid_driver();

MODULE_DESCRIPTION();
MODULE_LICENSE();