diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2019-02-27 15:48:53 -0800 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2019-02-27 15:48:53 -0800 |
| commit | c3eaa1a725dc304b4551ca70d986fe07c2708a32 (patch) | |
| tree | 6ea252d7da994587017f8d65830e0e24c007c64e /include/linux/hid-debug.h | |
| parent | ed990c4efc21e856961e7c3d31ca76c728aa032c (diff) | |
| parent | 119c43587e314ff2ed171b2b5acf70ebd5fbd156 (diff) | |
Merge "Merge android-4.4.175 (08d5867) into msm-4.4"
Diffstat (limited to 'include/linux/hid-debug.h')
| -rw-r--r-- | include/linux/hid-debug.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/linux/hid-debug.h b/include/linux/hid-debug.h index 8663f216c563..2d6100edf204 100644 --- a/include/linux/hid-debug.h +++ b/include/linux/hid-debug.h @@ -24,7 +24,10 @@ #ifdef CONFIG_DEBUG_FS +#include <linux/kfifo.h> + #define HID_DEBUG_BUFSIZE 512 +#define HID_DEBUG_FIFOSIZE 512 void hid_dump_input(struct hid_device *, struct hid_usage *, __s32); void hid_dump_report(struct hid_device *, int , u8 *, int); @@ -37,11 +40,8 @@ void hid_debug_init(void); void hid_debug_exit(void); void hid_debug_event(struct hid_device *, char *); - struct hid_debug_list { - char *hid_debug_buf; - int head; - int tail; + DECLARE_KFIFO_PTR(hid_debug_fifo, char); struct fasync_struct *fasync; struct hid_device *hdev; struct list_head node; @@ -64,4 +64,3 @@ struct hid_debug_list { #endif #endif - |
