Skip to content

Commit

Permalink
spi: fix compile error
Browse files Browse the repository at this point in the history
Fix compile error below:

     LD      drivers/spi/built-in.o
     CC [M]  drivers/spi/spi_gpio.o
   In file included from drivers/spi/spi_gpio.c:26:
   include/linux/spi/spi_bitbang.h:23: error: field `work' has incomplete type
   make[2]: *** [drivers/spi/spi_gpio.o] Error 1
   make[1]: *** [drivers/spi] Error 2
   make: *** [drivers] Error 2

Signed-off-by: Fernando Luis Vazquez Cao <fernando@oss.ntt.co.jp>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Fernando Luis Vazquez Cao authored and Linus Torvalds committed Oct 30, 2008
1 parent 731572d commit effdb94
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions include/linux/spi/spi_bitbang.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
* duplex (MicroWire) controllers. Provide chipslect() and txrx_bufs(),
* and custom setup()/cleanup() methods.
*/

#include <linux/workqueue.h>

struct spi_bitbang {
struct workqueue_struct *workqueue;
struct work_struct work;
Expand Down

0 comments on commit effdb94

Please sign in to comment.