Re: [PATCH 2/3] USB: serial: make minor allocation dynamic

2013-06-06 Thread Greg KH
On Thu, Jun 06, 2013 at 02:17:18PM +0200, Johan Hovold wrote: > On Wed, Jun 05, 2013 at 10:54:55AM -0700, Greg KH wrote: > > From: Greg Kroah-Hartman > > > > This moves the allocation of minor device numbers from a static array to > > be dynamic, using the idr interface. This means that you coul

Re: [PATCH 2/3] USB: serial: make minor allocation dynamic

2013-06-06 Thread Johan Hovold
On Wed, Jun 05, 2013 at 10:54:55AM -0700, Greg KH wrote: > From: Greg Kroah-Hartman > > This moves the allocation of minor device numbers from a static array to > be dynamic, using the idr interface. This means that you could > potentially get "gaps" in a minor number range for a single USB seri

[PATCH 2/3] USB: serial: make minor allocation dynamic

2013-06-05 Thread Greg KH
From: Greg Kroah-Hartman This moves the allocation of minor device numbers from a static array to be dynamic, using the idr interface. This means that you could potentially get "gaps" in a minor number range for a single USB serial device with multiple ports, but all should still work properly.