Re: [PATCH 00/53] staging: comedi: usbdux: cleanup driver

2013-07-25 Thread Greg Kroah-Hartman
On Thu, Jul 25, 2013 at 12:14:44PM -0500, H Hartley Sweeten wrote: > On Thursday, July 25, 2013 10:08 AM, H Hartley Sweeten wrote: > > On Thursday, July 25, 2013 8:25 AM, Ian Abbott wrote: > >> On 2013-07-24 22:05, H Hartley Sweeten wrote: > >>> Move all the usb_driver (*probe) and (*disconnect) op

RE: [PATCH 00/53] staging: comedi: usbdux: cleanup driver

2013-07-25 Thread H Hartley Sweeten
On Thursday, July 25, 2013 10:08 AM, H Hartley Sweeten wrote: > On Thursday, July 25, 2013 8:25 AM, Ian Abbott wrote: >> On 2013-07-24 22:05, H Hartley Sweeten wrote: >>> Move all the usb_driver (*probe) and (*disconnect) operations into the >>> comedi_driver (*auto_attach) and (*detach). This allo

RE: [PATCH 00/53] staging: comedi: usbdux: cleanup driver

2013-07-25 Thread H Hartley Sweeten
On Thursday, July 25, 2013 8:25 AM, Ian Abbott wrote: > On 2013-07-24 22:05, H Hartley Sweeten wrote: >> Move all the usb_driver (*probe) and (*disconnect) operations into the >> comedi_driver (*auto_attach) and (*detach). This allows the per device >> private data to be kzalloc()'d and removes the

Re: [PATCH 00/53] staging: comedi: usbdux: cleanup driver

2013-07-25 Thread Ian Abbott
On 2013-07-24 22:05, H Hartley Sweeten wrote: Move all the usb_driver (*probe) and (*disconnect) operations into the comedi_driver (*auto_attach) and (*detach). This allows the per device private data to be kzalloc()'d and removes the 16 device limitation. Remove all the unnecessary information

[PATCH 00/53] staging: comedi: usbdux: cleanup driver

2013-07-24 Thread H Hartley Sweeten
Move all the usb_driver (*probe) and (*disconnect) operations into the comedi_driver (*auto_attach) and (*detach). This allows the per device private data to be kzalloc()'d and removes the 16 device limitation. Remove all the unnecessary information from the private data. Tidy up the driver to re