diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2019-06-09 01:11:38 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2019-06-10 16:01:54 +0200 |
commit | 7fae8a9ced742f364604a88a53084f471cc9c6e5 (patch) | |
tree | fa7be419e46f1398ca873bf0aece9fcb04592eec /drivers/fmc | |
parent | fc8938d445d5ca861c5a76098512ab6dd67f6d80 (diff) | |
download | linux-stable-7fae8a9ced742f364604a88a53084f471cc9c6e5.tar.gz linux-stable-7fae8a9ced742f364604a88a53084f471cc9c6e5.tar.bz2 linux-stable-7fae8a9ced742f364604a88a53084f471cc9c6e5.zip |
fmc: Decouple from Linux GPIO subsystem
FMC has its own GPIO handling, the inclusion of <linux/gpio.h>
is only to reuse some flags that we can just as well provide
using local defines.
Cc: Federico Vaga <federico.vaga@cern.ch>
Cc: Pat Riehecky <riehecky@fnal.gov>
Acked-by: Alessandro Rubini <rubini@gnudd.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/fmc')
-rw-r--r-- | drivers/fmc/fmc-trivial.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/fmc/fmc-trivial.c b/drivers/fmc/fmc-trivial.c index 8defdee3e3a3..b99dbc7ee203 100644 --- a/drivers/fmc/fmc-trivial.c +++ b/drivers/fmc/fmc-trivial.c @@ -15,7 +15,6 @@ #include <linux/module.h> #include <linux/init.h> #include <linux/interrupt.h> -#include <linux/gpio.h> #include <linux/fmc.h> static struct fmc_driver t_drv; /* initialized later */ |