Commit 38c91d1d authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

tty: add SPDX identifiers to Kconfig and Makefiles



There were a few Kconfig and Makefiles under drivers/tty/ that were
missing a SPDX identifier.  Fix that up so that automated tools can
properly classify all kernel source files.

Cc: Jiri Slaby <jslaby@suse.com>
Cc: Jiri Kosina <jikos@kernel.org>
Cc: Rob Herring <robh@kernel.org>
Acked-by: default avatarDavid Sterba <dsterba@suse.com>
Reviewed-by: default avatarMukesh Ojha <mojha@codeaurora.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b63d443b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
config TTY
	bool "Enable TTY" if EXPERT
	default y
+1 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
if TTY

config HVC_DRIVER
+1 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
#
# Makefile for the IPWireless driver
#
+1 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
#
# Serial bus device driver configuration
#
+1 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
serdev-objs := core.o

obj-$(CONFIG_SERIAL_DEV_BUS) += serdev.o
Loading