Re: [PATCH] m68k: Enable arbitary speed tty support

2007-05-24 Thread Alan Cox
On Thu, 24 May 2007 13:40:15 -0700 Andrew Morton <[EMAIL PROTECTED]> wrote: > Alan, I'm all dazed and confused about these patches: > > arm-enable-arbitary-speed-tty-ioctls-and-split.patch > arm26-enable-arbitary-speed-tty-ioctls-and-split.patch > ia64-arbitary-speed-tty-ioctl-support.patch > xte

Re: [PATCH] m68k: Enable arbitary speed tty support

2007-05-24 Thread Andrew Morton
Alan, I'm all dazed and confused about these patches: arm-enable-arbitary-speed-tty-ioctls-and-split.patch arm26-enable-arbitary-speed-tty-ioctls-and-split.patch ia64-arbitary-speed-tty-ioctl-support.patch xtensa-enable-arbitary-tty-speed-setting-ioctls.patch h8300-enable-arbitary-speed-tty-port-s

Re: [PATCH] m68k: Enable arbitary speed tty support

2007-05-23 Thread Andreas Schwab
Alan Cox <[EMAIL PROTECTED]> writes: > ddiff -u --new-file --recursive --exclude-from /usr/src/exclude > linux.vanilla-2.6.22-rc1-mm1/include/asm-arm/termbits.h > linux-2.6.22-rc1-mm1/include/asm-arm/termbits.h > --- linux.vanilla-2.6.22-rc1-mm1/include/asm-arm/termbits.h 2007-04-30 > 10:48:1

Re: [PATCH] m68k: Enable arbitary speed tty support

2007-05-23 Thread Alan Cox
> Why not `#define termios2 ktermios' (or vice versa) on platforms where > they are the same? Because #define is a bit of a loose cannon when it comes to substitutions and I didn't want nasty suprises. Also because ktermios may change in future and I don't want to have to liase with 4 million port

Re: [PATCH] m68k: Enable arbitary speed tty support

2007-05-23 Thread Geert Uytterhoeven
On Wed, 23 May 2007, Alan Cox wrote: > > > +#define TCSETS2 _IOW('T',0x2B, struct termios2) > > > +#define TCSETSW2 _IOW('T',0x2C, struct termios2) > > > +#define TCSETSF2 _IOW('T',0x2D, struct termios2) > > > > Where is `struct termios2' defined? Right now it doesn't compile because > >

Re: [PATCH] m68k: Enable arbitary speed tty support

2007-05-23 Thread Alan Cox
> > +#define TCSETS2_IOW('T',0x2B, struct termios2) > > +#define TCSETSW2 _IOW('T',0x2C, struct termios2) > > +#define TCSETSF2 _IOW('T',0x2D, struct termios2) > > Where is `struct termios2' defined? Right now it doesn't compile because > of that. > Sorry, shortage of qualified g

Re: [PATCH] m68k: Enable arbitary speed tty support

2007-05-23 Thread Geert Uytterhoeven
On Wed, 23 May 2007, Alan Cox wrote: > Add the needed constants and defines to activate the existing code. > > Signed-off-by: Alan Cox <[EMAIL PROTECTED]> > > diff -u --new-file --recursive --exclude-from /usr/src/exclude > linux.vanilla-2.6.22-rc1-mm1/include/asm-m68k/ioctls.h > linux-2.6.22-