aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-11-26 02:02:51 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-11-26 02:02:51 -0500
commit032371a1e673275202c047537726f4216d7dbf0b (patch)
tree6617c73b795f51f1e86a6cdb79fadb7ed5d69829
parent2e6e902d185027f8e3cb8b7305238f7e35d6a436 (diff)
parentd20810530b7109a95abef5130e6dcec09c5180d7 (diff)
Merge tag 'fsi-updates-2018-11-26' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/linux-fsi char-misc-linus
Ben writes: "Here are two very minor fixes for FSI. One from Arnd is a Kconfig fixup and has been rusting away in my tree for a while (I had forgotten about it). The other one just removes a duplicate #include, courtesy of Brajeswar Ghosh." * tag 'fsi-updates-2018-11-26' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/linux-fsi: fsi: fsi-scom.c: Remove duplicate header fsi: master-ast-cf: select GENERIC_ALLOCATOR
-rw-r--r--drivers/fsi/Kconfig1
-rw-r--r--drivers/fsi/fsi-scom.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/drivers/fsi/Kconfig b/drivers/fsi/Kconfig
index af3a20dd5aa4..99c99a5d57fe 100644
--- a/drivers/fsi/Kconfig
+++ b/drivers/fsi/Kconfig
@@ -46,6 +46,7 @@ config FSI_MASTER_AST_CF
46 tristate "FSI master based on Aspeed ColdFire coprocessor" 46 tristate "FSI master based on Aspeed ColdFire coprocessor"
47 depends on GPIOLIB 47 depends on GPIOLIB
48 depends on GPIO_ASPEED 48 depends on GPIO_ASPEED
49 select GENERIC_ALLOCATOR
49 ---help--- 50 ---help---
50 This option enables a FSI master using the AST2400 and AST2500 GPIO 51 This option enables a FSI master using the AST2400 and AST2500 GPIO
51 lines driven by the internal ColdFire coprocessor. This requires 52 lines driven by the internal ColdFire coprocessor. This requires
diff --git a/drivers/fsi/fsi-scom.c b/drivers/fsi/fsi-scom.c
index df94021dd9d1..81dc01ac2351 100644
--- a/drivers/fsi/fsi-scom.c
+++ b/drivers/fsi/fsi-scom.c
@@ -20,7 +20,6 @@
20#include <linux/fs.h> 20#include <linux/fs.h>
21#include <linux/uaccess.h> 21#include <linux/uaccess.h>
22#include <linux/slab.h> 22#include <linux/slab.h>
23#include <linux/cdev.h>
24#include <linux/list.h> 23#include <linux/list.h>
25 24
26#include <uapi/linux/fsi.h> 25#include <uapi/linux/fsi.h>