-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TTY: serial, move 68360 driver to staging
This driver has been broken at least since 2008. At that time, a88487c (Fix compile errors in SGI console drivers) broke this driver completely. And since nobody noticed for the past 3 years, move it into staging. I think this will rot there and we will throw it away completely after some time. Or maybe someone will volunteer to fix it ;). Signed-off-by: Jiri Slaby <jslaby@suse.cz> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
- Loading branch information
Jiri Slaby
authored and
Greg Kroah-Hartman
committed
Sep 22, 2011
1 parent
3d43b7d
commit 3a0db72
Showing
8 changed files
with
26 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
config SERIAL_68360_SMC | ||
bool "68360 SMC uart support" | ||
depends on M68360 | ||
help | ||
This driver supports the SMC serial ports of the Motorola 68360 CPU. | ||
|
||
config SERIAL_68360_SCC | ||
bool "68360 SCC uart support" | ||
depends on M68360 | ||
help | ||
This driver supports the SCC serial ports of the Motorola 68360 CPU. | ||
|
||
config SERIAL_68360 | ||
bool | ||
depends on SERIAL_68360_SMC || SERIAL_68360_SCC | ||
default y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
obj-$(CONFIG_SERIAL_68360) += 68360serial.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
These are a few serial drivers that either do not build, or do not work if they | ||
do build, or if they seem to work, are for obsolete hardware, or are full of | ||
unfixable races and no one uses them anymore. | ||
|
||
If no one steps up to adopt any of these drivers, they will be removed | ||
in the 3.4 release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters