diff options
author | Petr Štetiar <ynezz@true.cz> | 2019-06-15 09:28:05 +0000 |
---|---|---|
committer | Christian Lamparter <chunkeey@gmail.com> | 2019-07-19 17:00:30 +0200 |
commit | 074c8e296c221b59d532ca6e695104599b34c7a2 (patch) | |
tree | c7f08d9fca00fde8da9df632eb81f93846481f93 /package/kernel | |
parent | 96cc390d8808a79f920b6b3fd256cfeb6fd501b2 (diff) | |
download | upstream-074c8e296c221b59d532ca6e695104599b34c7a2.tar.gz upstream-074c8e296c221b59d532ca6e695104599b34c7a2.tar.bz2 upstream-074c8e296c221b59d532ca6e695104599b34c7a2.zip |
gpio-button-hotplug: fix 4.19 build breakage on malta/be64
While testing 4.19 build on malta/be64, I've encountered following
error:
gpio-button-hotplug/gpio-button-hotplug.c:529:18: error: implicit
declaration of function 'gpio_to_desc'
which is caused by the missing include fixed by this patch.
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
(cherry picked from commit dd6d82112a10796dd5aa0f9e9c76ec8e77e7e211)
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/gpio-button-hotplug/src/gpio-button-hotplug.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/kernel/gpio-button-hotplug/src/gpio-button-hotplug.c b/package/kernel/gpio-button-hotplug/src/gpio-button-hotplug.c index daa4b2a4f7..e63d414284 100644 --- a/package/kernel/gpio-button-hotplug/src/gpio-button-hotplug.c +++ b/package/kernel/gpio-button-hotplug/src/gpio-button-hotplug.c @@ -28,6 +28,7 @@ #include <linux/of_gpio.h> #include <linux/of_irq.h> #include <linux/gpio_keys.h> +#include <linux/gpio/consumer.h> #define BH_SKB_SIZE 2048 |