diff options
author | Alan Cox <alan@linux.intel.com> | 2010-07-27 03:16:05 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-08-10 16:47:46 -0400 |
commit | e38018be3e7c03dd7e8f4ab0e1d55407cebbf89d (patch) | |
tree | 0725efad03d22a834791baaecb83d0f14bc0cc98 /drivers/serial/max3107.h | |
parent | 3c4108c82f7769fcd265dc77a5bb0c6d8bcea25f (diff) |
serial: max3107: Fix gpiolib support
Because of the way gpiolib works we actually need to ifdef this in our
header file
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/serial/max3107.h')
-rw-r--r-- | drivers/serial/max3107.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/serial/max3107.h b/drivers/serial/max3107.h index 72b30415f417..7ab632392502 100644 --- a/drivers/serial/max3107.h +++ b/drivers/serial/max3107.h | |||
@@ -368,8 +368,10 @@ struct max3107_port { | |||
368 | /* SPI device structure */ | 368 | /* SPI device structure */ |
369 | struct spi_device *spi; | 369 | struct spi_device *spi; |
370 | 370 | ||
371 | #if defined(CONFIG_GPIOLIB) | ||
371 | /* GPIO chip stucture */ | 372 | /* GPIO chip stucture */ |
372 | struct gpio_chip chip; | 373 | struct gpio_chip chip; |
374 | #endif | ||
373 | 375 | ||
374 | /* Workqueue that does all the magic */ | 376 | /* Workqueue that does all the magic */ |
375 | struct workqueue_struct *workqueue; | 377 | struct workqueue_struct *workqueue; |