#include <linux/device.h>
#include <linux/hid.h>
#include <linux/module.h>
#include "hid-ids.h"
#define BELKIN_HIDDEV …
#define BELKIN_WKBD …
#define belkin_map_key_clear(c) …
static int belkin_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 belkin_probe(struct hid_device *hdev, const struct hid_device_id *id)
{ … }
static const struct hid_device_id belkin_devices[] = …;
MODULE_DEVICE_TABLE(hid, belkin_devices);
static struct hid_driver belkin_driver = …;
module_hid_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;