// SPDX-License-Identifier: GPL-2.0-only /* * HID driver for primax and similar keyboards with in-band modifiers * * Copyright 2011 Google Inc. All Rights Reserved * * Author: * Terry Lambert <[email protected]> */ #include <linux/device.h> #include <linux/hid.h> #include <linux/module.h> #include "hid-ids.h" static int px_raw_event(struct hid_device *hid, struct hid_report *report, u8 *data, int size) { … } static const struct hid_device_id px_devices[] = …; MODULE_DEVICE_TABLE(hid, px_devices); static struct hid_driver px_driver = …; module_hid_driver(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …; MODULE_LICENSE(…) …;