diff options
author | Nicolas Pitre <nicolas.pitre@linaro.org> | 2017-04-12 18:37:16 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-04-18 18:01:52 +0200 |
commit | a1235b3eb10086b8420f37bbb6c29436f55940ba (patch) | |
tree | 5f8989b21d7d38ec00762fafd5266d6dbe5a5db9 /drivers/tty/Makefile | |
parent | fff0a2ca3a061c230b0e905e7586267a517538ac (diff) | |
download | linux-next-a1235b3eb10086b8420f37bbb6c29436f55940ba.tar.gz |
tty: split job control support into a file of its own
This makes it easier for job control to become optional and/or usable
independently from tty_io.c, as well as providing a nice purpose
separation. No logical changes from this patch.
Signed-off-by: Nicolas Pitre <nico@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/Makefile')
-rw-r--r-- | drivers/tty/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/Makefile b/drivers/tty/Makefile index 6983b5a49ec3..f02becdb3e33 100644 --- a/drivers/tty/Makefile +++ b/drivers/tty/Makefile @@ -1,6 +1,6 @@ obj-$(CONFIG_TTY) += tty_io.o n_tty.o tty_ioctl.o tty_ldisc.o \ tty_buffer.o tty_port.o tty_mutex.o \ - tty_ldsem.o tty_baudrate.o + tty_ldsem.o tty_baudrate.o tty_jobctrl.o obj-$(CONFIG_LEGACY_PTYS) += pty.o obj-$(CONFIG_UNIX98_PTYS) += pty.o obj-$(CONFIG_AUDIT) += tty_audit.o |