[PATCH 01/11] drivercore: Add driver probe deferral mechanism

2012-03-08 Thread Thierry Reding
From: Grant Likely Allow drivers to report at probe time that they cannot get all the resources required by the device, and should be retried at a later time. This should completely solve the problem of getting devices initialized in the right order. Right now this is mostly handled by mucking

Re: [PATCH 01/11] drivercore: Add driver probe deferral mechanism

2012-03-19 Thread Sylwester Nawrocki
On 03/08/2012 03:51 PM, Thierry Reding wrote: From: Grant Likely Allow drivers to report at probe time that they cannot get all the resources required by the device, and should be retried at a later time. This should completely solve the problem of getting devices initialized in the right order

Re: [PATCH 01/11] drivercore: Add driver probe deferral mechanism

2012-03-20 Thread Grant Likely
On Tue, 20 Mar 2012 00:12:56 +0100, Sylwester Nawrocki wrote: > On 03/08/2012 03:51 PM, Thierry Reding wrote: > > From: Grant Likely > > > > Allow drivers to report at probe time that they cannot get all the resources > > required by the device, and should be retried at a later time. > > > > This