Searched hist:"7 a082a24cf9f727868ab4b9ca2b7cd8ce46fa8e6" (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/drivers/input/mouse/ |
H A D | appletouch.c | diff 7a082a24cf9f727868ab4b9ca2b7cd8ce46fa8e6 Fri Jul 27 13:34:26 CDT 2018 Jia-Ju Bai <baijiaju1990@gmail.com> Input: appletouch - replace GFP_ATOMIC with GFP_KERNEL
atp_open(), atp_recover() and atp_resume() are never called in atomic context. They call usb_submit_urb() with GFP_ATOMIC, which is not necessary. GFP_ATOMIC can be replaced with GFP_KERNEL.
This is found by a static analysis tool named DCNS written by myself.
Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
|