Skip to content

Commit 44318fe

Browse files
moutainrivergregkh
authored andcommitted
serial: max3107: introduce a max3107 driver
This device is used by some of the Intel MID platforms. It's not similar enough to the MAX3100 to use the same driver. At this point the driver is specific to the platform and not generalised. We will fix that later. Signed-off-by: jianwei.yang <[email protected]> Signed-off-by: Alan Cox <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 11dbf20 commit 44318fe

File tree

4 files changed

+1809
-0
lines changed

4 files changed

+1809
-0
lines changed

drivers/serial/Kconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -542,6 +542,14 @@ config SERIAL_S5PV210
542542
help
543543
Serial port support for Samsung's S5P Family of SoC's
544544

545+
config SERIAL_MAX3107
546+
tristate "MAX3107 support"
547+
depends on SPI && GPIOLIB
548+
select SERIAL_CORE
549+
default y
550+
help
551+
MAX3107 chip support
552+
545553
config SERIAL_MAX3100
546554
tristate "MAX3100 support"
547555
depends on SPI

drivers/serial/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ obj-$(CONFIG_SERIAL_S3C24A0) += s3c24a0.o
4646
obj-$(CONFIG_SERIAL_S3C6400) += s3c6400.o
4747
obj-$(CONFIG_SERIAL_S5PV210) += s5pv210.o
4848
obj-$(CONFIG_SERIAL_MAX3100) += max3100.o
49+
obj-$(CONFIG_SERIAL_MAX3107) += max3107.o
4950
obj-$(CONFIG_SERIAL_IP22_ZILOG) += ip22zilog.o
5051
obj-$(CONFIG_SERIAL_MUX) += mux.o
5152
obj-$(CONFIG_SERIAL_68328) += 68328serial.o

0 commit comments

Comments
 (0)