Re: [lng-odp] [API-NEXT PATCH 15/21] drv: adding driver remove function

2017-02-27 Thread Christophe Milard
On 22 February 2017 at 23:56, Bill Fischofer wrote: > > > On Wed, Feb 22, 2017 at 6:55 AM, Christophe Milard > wrote: >> >> The remove function, as for other driver items (such as enumeratos...) is > > > Typo: enumerators => V2 > >> >>

Re: [lng-odp] [API-NEXT PATCH 15/21] drv: adding driver remove function

2017-02-22 Thread Bill Fischofer
On Wed, Feb 22, 2017 at 6:55 AM, Christophe Milard < christophe.mil...@linaro.org> wrote: > The remove function, as for other driver items (such as enumeratos...) is > Typo: enumerators > called before the driver is to be removed, i.e. after all devices have been > been unboud from the driver.

[lng-odp] [API-NEXT PATCH 15/21] drv: adding driver remove function

2017-02-22 Thread Christophe Milard
The remove function, as for other driver items (such as enumeratos...) is called before the driver is to be removed, i.e. after all devices have been been unboud from the driver. remove() should release any resource held by the driver. Signed-off-by: Christophe Milard