Hi Ralf, On Sat, Mar 30, 2002 at 02:28:56PM +0100, raoul wrote: > Especially because you only need the small change pointed out by > Russell Coker: > > --- sgiserial.c.orig Sat Mar 30 10:51:03 2002 > +++ sgiserial.c Sat Mar 30 10:54:28 2002 > @@ -1875,7 +1875,11 @@ > > memset(&serial_driver, 0, sizeof(struct tty_driver)); > serial_driver.magic = TTY_DRIVER_MAGIC; > +#ifdef CONFIG_DEVFS_FS > + serial_driver.name = "tts/%d"; > +#else > serial_driver.name = "ttyS"; > +#endif > serial_driver.major = TTY_MAJOR; > serial_driver.minor_start = 64; > serial_driver.num = NUM_CHANNELS; Thanks for including the changes fr the ttyS's. But it seems you forgot the callout-devices: > @@ -1911,7 +1915,11 @@ > * major number and the subtype code. > */ > callout_driver = serial_driver; > +#ifdef CONFIG_DEVFS_FS > + callout_driver.name = "cua/%d"; > +#else > callout_driver.name = "cua"; > +#endif > callout_driver.major = TTYAUX_MAJOR; > callout_driver.subtype = SERIAL_TYPE_CALLOUT; > Could you commit that too? Thanx Raoul