[linux-usb-devel] [PATCH] iuu_phoenix new driver proposal for review and comments

2007-07-18 Thread eczema
This patch add the new iuu_phoenix driver. Signed-off-by: Alain Degreffe [EMAIL PROTECTED] diff --git a/drivers/usb/serial/Kconfig b/drivers/usb/serial/Kconfig index 3efe670..1afcd0d 100644 --- a/drivers/usb/serial/Kconfig +++ b/drivers/usb/serial/Kconfig @@ -554,6 +554,15 @@ config

Re: [linux-usb-devel] [PATCH] iuu_phoenix new driver proposal for review and comments

2007-07-18 Thread Oliver Neukum
Am Mittwoch 18 Juli 2007 schrieb eczema: +struct iuu_buffers { +   u8 buf[256]; +   u8 finalbuf[256]; +   u8 dbgbuf[512]; +   u8 len; +}; + Is that safe? Kmalloc will give out chunks of memory safe for DMA, but will they be aligned? Regards Oliver

Re: [linux-usb-devel] [PATCH] iuu_phoenix new driver proposal for review and comments

2007-07-18 Thread Oliver Neukum
Am Mittwoch 18 Juli 2007 schrieb eczema: +   if ((set == 0) priv-TIOSTATUS == TIOCM_RTS) { +   dbg(%s TIOCMSET RESET called !!!, __FUNCTION__); +   priv-TIOSTATUS = 0; +   if (iuu_reset(port, 0x0C)) +   return -EIO; +   

Re: [linux-usb-devel] [PATCH] iuu_phoenix new driver proposal for review and comments

2007-07-18 Thread Pete Zaitcev
On Wed, 18 Jul 2007 20:58:45 +0200, Oliver Neukum [EMAIL PROTECTED] wrote: Am Mittwoch 18 Juli 2007 schrieb eczema: +struct iuu_buffers { +   u8 buf[256]; +   u8 finalbuf[256]; +   u8 dbgbuf[512]; +   u8 len; +}; + Is that safe? Kmalloc will give out chunks of