Re: [linux-usb-devel] usb_serial and tty

2002-06-26 Thread Thomas Wahrenbruch
>>Hi all, >> >>in my driver for our usb-serial converter I want to pass the received data >>back. >>But after every >>tty_insert_flip_char(tty, data[i], 0); >>call, my write method is called with data[i] or something else (0x5E, 0x40, >>0x41 mostly). >> >>What could be the reason for this? >>Who

Re: [linux-usb-devel] usb_serial and tty

2002-06-21 Thread Greg KH
On Fri, Jun 21, 2002 at 12:33:11PM +0200, Thomas Wahrenbruch wrote: > Hi all, > > in my driver for our usb-serial converter I want to pass the received data > back. > But after every > tty_insert_flip_char(tty, data[i], 0); > call, my write method is called with data[i] or something else (0x5E,

[linux-usb-devel] usb_serial and tty

2002-06-21 Thread Thomas Wahrenbruch
Hi all, in my driver for our usb-serial converter I want to pass the received data back. But after every tty_insert_flip_char(tty, data[i], 0); call, my write method is called with data[i] or something else (0x5E, 0x40, 0x41 mostly). What could be the reason for this? Who calls my write method?