summaryrefslogtreecommitdiff
path: root/include/linux/hidraw.h
blob: ddf52612eed85dffed82a0d1993892ba848dc38b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 *  Copyright (c) 2007 Jiri Kosina
 */
/*
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
 */
#ifndef _HIDRAW_H
#define _HIDRAW_H

#include <uapi/linux/hidraw.h>


struct hidraw {
	unsigned int minor;
	int exist;
	int open;
	wait_queue_head_t wait;
	struct hid_device *hid;
	struct device *dev;
	spinlock_t list_lock;
	struct list_head list;
};

struct hidraw_report {
	__u8 *value;
	int len;
};

struct hidraw_list {
	struct hidraw_report buffer[HIDRAW_BUFFER_SIZE];
	int head;
	int tail;
	struct fasync_struct *fasync;
	struct hidraw *hidraw;
	struct list_head node;
	struct mutex read_mutex;
};

#ifdef CONFIG_HIDRAW
int hidraw_init(void);
void hidraw_exit(void);
int hidraw_report_event(struct hid_device *, u8 *, int);
int hidraw_connect(struct hid_device *);
void hidraw_disconnect(struct hid_device *);
#else
static inline int hidraw_init(void) { return 0; }
static inline void hidraw_exit(void) { }
static inline int hidraw_report_event(struct hid_device *hid, u8 *data, int len) { return 0; }
static inline int hidraw_connect(struct hid_device *hid) { return -1; }
static inline void hidraw_disconnect(struct hid_device *hid) { }
#endif

#endif
sched/cputime: move rq parameter in irqtime_account_process_tickAlex Shi 2019-11-21sched/vtime: Bring up complete kcpustat accessorFrederic Weisbecker 2019-11-21sched/cputime: Support other fields on kcpustat_field()Frederic Weisbecker 2019-10-29sched/kcpustat: Introduce vtime-aware kcpustat accessor for CPUTIME_SYSTEMFrederic Weisbecker 2019-10-29sched/vtime: Rename vtime_accounting_cpu_enabled() to vtime_accounting_enable...Frederic Weisbecker 2019-10-29sched/cputime: Add vtime guest task stateFrederic Weisbecker 2019-10-29sched/cputime: Add vtime idle task stateFrederic Weisbecker 2019-10-29sched/vtime: Record CPU under seqcount for kcpustat needsFrederic Weisbecker 2019-10-09sched/cputime: Spare a seqcount lock/unlock cycle on context switchFrederic Weisbecker 2019-10-09sched/cputime: Rename vtime_account_system() to vtime_account_kernel()Frederic Weisbecker 2019-10-09sched/vtime: Fix guest/system mis-accounting on task switchFrederic Weisbecker 2019-05-21treewide: Add SPDX license identifier for missed filesThomas Gleixner 2018-12-03sched: Fix various typos in commentsIngo Molnar 2018-03-04sched/headers: Simplify and clean up header usage in the schedulerIngo Molnar 2018-03-03sched: Clean up and harmonize the coding style of the scheduler code baseIngo Molnar 2017-11-15Merge branch 'for-4.15' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/c...Linus Torvalds 2017-11-08sched/clock, sched/cputime: Use lockdep to assert IRQs are disabled/enabledFrederic Weisbecker 2017-09-25sched/cputime: Add dummy cputime_adjust() implementation for CONFIG_VIRT_CPU_...Tejun Heo 2017-09-25cpuacct: Introduce cgroup_account_cputime[_field]()Tejun Heo 2017-09-25sched/cputime: Expose cputime_adjust()Tejun Heo 2017-07-14sched/cputime: Don't use smp_processor_id() in preemptible contextWanpeng Li 2017-07-05sched/cputime: Accumulate vtime on top of nsec clocksourceWanpeng Li 2017-07-05sched/cputime: Move the vtime task fields to their own structFrederic Weisbecker 2017-07-05sched/cputime: Rename vtime fieldsFrederic Weisbecker 2017-07-05sched/cputime: Always set tsk->vtime_snap_whence after accounting vtimeFrederic Weisbecker 2017-07-05vtime, sched/cputime: Remove vtime_account_user()Frederic Weisbecker 2017-07-04Revert "sched/cputime: Refactor the cputime_adjust() code"Ingo Molnar 2017-06-30sched/cputime: Refactor the cputime_adjust() codeGustavo A. R. Silva 2017-04-27sched/cputime: Fix ksoftirqd cputime accounting regressionFrederic Weisbecker