hid-roccat.c (94bd217e2d683719ab21a4ac117d8a1b91cbedc9) | hid-roccat.c (8f86a2c3cb90e8bb0733de2d2b0abbe7050bb536) |
---|---|
1/* 2 * Roccat driver for Linux 3 * 4 * Copyright (c) 2010 Stefan Achatz <erazor_de@users.sourceforge.net> 5 */ 6 7/* 8 * This program is free software; you can redistribute it and/or modify it --- 13 unchanged lines hidden (view full) --- 22 */ 23 24#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 25 26#include <linux/cdev.h> 27#include <linux/poll.h> 28#include <linux/sched.h> 29#include <linux/hid-roccat.h> | 1/* 2 * Roccat driver for Linux 3 * 4 * Copyright (c) 2010 Stefan Achatz <erazor_de@users.sourceforge.net> 5 */ 6 7/* 8 * This program is free software; you can redistribute it and/or modify it --- 13 unchanged lines hidden (view full) --- 22 */ 23 24#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 25 26#include <linux/cdev.h> 27#include <linux/poll.h> 28#include <linux/sched.h> 29#include <linux/hid-roccat.h> |
30#include <linux/module.h> |
|
30 31#define ROCCAT_FIRST_MINOR 0 32#define ROCCAT_MAX_DEVICES 8 33 34/* should be a power of 2 for performance reason */ 35#define ROCCAT_CBUF_SIZE 16 36 37struct roccat_report { --- 413 unchanged lines hidden --- | 31 32#define ROCCAT_FIRST_MINOR 0 33#define ROCCAT_MAX_DEVICES 8 34 35/* should be a power of 2 for performance reason */ 36#define ROCCAT_CBUF_SIZE 16 37 38struct roccat_report { --- 413 unchanged lines hidden --- |