printf: Remove unused 'bprintf'
[drm/drm-misc.git] / include / linux / hid-roccat.h
blob753654fff07f7f4612a46a712da9b2c3a32794b7
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 #ifndef __HID_ROCCAT_H
3 #define __HID_ROCCAT_H
5 /*
6 * Copyright (c) 2010 Stefan Achatz <erazor_de@users.sourceforge.net>
7 */
9 /*
12 #include <linux/hid.h>
13 #include <linux/types.h>
15 #define ROCCATIOCGREPSIZE _IOR('H', 0xf1, int)
17 #ifdef __KERNEL__
19 int roccat_connect(const struct class *klass, struct hid_device *hid,
20 int report_size);
21 void roccat_disconnect(int minor);
22 int roccat_report_event(int minor, u8 const *data);
24 #endif
26 #endif