From: <sk...@us...> - 2010-11-04 06:15:59
|
Revision: 2398 http://linuxconsole.svn.sourceforge.net/linuxconsole/?rev=2398&view=rev Author: skitt Date: 2010-11-04 06:15:52 +0000 (Thu, 04 Nov 2010) Log Message: ----------- Dmitry Torokhov has merged into his "next" tree a patch to support ps2 multiplexers on TQM85xx boards. Attached is a patch that adds necessary support to inputattach. Signed-off-by: Dmitry Eremin-Solenikov <dba...@gm...> Modified Paths: -------------- trunk/utils/inputattach.c trunk/utils/serio-ids.h Modified: trunk/utils/inputattach.c =================================================================== --- trunk/utils/inputattach.c 2010-09-27 05:14:20 UTC (rev 2397) +++ trunk/utils/inputattach.c 2010-11-04 06:15:52 UTC (rev 2398) @@ -536,6 +536,9 @@ { "--fujitsu", "-fjt", "Fujitsu serial touchscreen", B9600, CS8, SERIO_FUJITSU, 0x00, 0x00, 1, fujitsu_init }, +{ "--ps2mult", "-ps2m", "PS/2 serial multiplexer", + B57600, CS8, + SERIO_PS2MULT, 0x00, 0x00, 1, NULL }, { "--dump", "-dump", "Just enable device", B2400, CS8, 0, 0x00, 0x00, 0, dump_init }, Modified: trunk/utils/serio-ids.h =================================================================== --- trunk/utils/serio-ids.h 2010-09-27 05:14:20 UTC (rev 2397) +++ trunk/utils/serio-ids.h 2010-11-04 06:15:52 UTC (rev 2398) @@ -122,5 +122,8 @@ #ifndef SERIO_W8001 # define SERIO_W8001 0x39 #endif +#ifndef SERIO_PSMULT +# define SERIO_PS2MULT 0x3c +#endif #endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |