Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 566f5b44 authored by jabashque's avatar jabashque Committed by Michael Bestas
Browse files

input: touchscreen: Fix error due to assumption of CONFIG_FB always being set

synaptics_dsx's synaptics_dsx_rmi_dev.c calls send_sig_info(), but if
CONFIG_FB isn't set, then the implicit linux/sched/signal.h include gets
lost. Explicitly include linux/sched/signal.h to fix this.

Change-Id: I411e39b6bcbe843f64a10447a867ffb64b4222cf
parent ef2b3118
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -43,6 +43,7 @@
#include <linux/gpio.h>
#include <linux/uaccess.h>
#include <linux/cdev.h>
#include <linux/sched/signal.h>
#include <linux/platform_device.h>
#include <linux/input/synaptics_dsx.h>
#include "synaptics_dsx_core.h"