|
From: Jan-Benedict G. <jb...@us...> - 2004-10-03 11:30:40
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1144/arch/vax/kernel Modified Files: diag_led.c Log Message: - Add support for the VXT2000+ - I think the long "detection" function is ugly. Is there a way to pass the I/O address down (as it is done with the vsbus devices)? Index: diag_led.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/diag_led.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- diag_led.c 30 Sep 2004 09:05:20 -0000 1.8 +++ diag_led.c 3 Oct 2004 11:30:28 -0000 1.9 @@ -53,6 +53,10 @@ inverted = 1; return DIAG_LED_KA49_BASE; } + if (is_vxt ()) { + inverted = 1; + return DIAG_LED_VXT_BASE; + } printk (KERN_ERR "No base address known for your machine yet!\n"); return 0; |