Re: [PATCH] spi subsystem: destroy the spi_bitbang workqueue only after the spi master is unregistered

2007-03-09 Thread Chris Lesiak
From: Chris Lesiak <[EMAIL PROTECTED]> This patch fixes a bug in the cleanup of an spi_bitbang bus. The workqueue associated with the bus was destroyed before the call to spi_unregister_master. That meant that spi devices on that bus would be unable to do IO in their remove method. The shutdown

Re: [PATCH] spi subsystem: destroy the spi_bitbang workqueue only after the spi master is unregistered

2007-03-08 Thread David Brownell
On Wednesday 07 March 2007 3:48 pm, Chris Lesiak wrote: > From: Chris Lesiak <[EMAIL PROTECTED]> > > This patch fixes a bug in the cleanup of an spi_bitbang bus. It's nearly right, but see below. > @@ -505,28 +499,10 @@ EXPORT_SYMBOL_GPL(spi_bitbang_start); > */ > int spi_bitbang_stop(struc

[PATCH] spi subsystem: destroy the spi_bitbang workqueue only after the spi master is unregistered

2007-03-07 Thread Chris Lesiak
From: Chris Lesiak <[EMAIL PROTECTED]> This patch fixes a bug in the cleanup of an spi_bitbang bus. The workqueue associated with the bus was destroyed before the call to spi_unregister_master. That meant that spi devices on that bus would be unable to do IO in their remove method. The shutdown