diff options
Diffstat (limited to 'drivers/net/sfc/spi.h')
-rw-r--r-- | drivers/net/sfc/spi.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/net/sfc/spi.h b/drivers/net/sfc/spi.h index 8bf4fce0813a..71f2e3ebe1c7 100644 --- a/drivers/net/sfc/spi.h +++ b/drivers/net/sfc/spi.h | |||
@@ -1,7 +1,7 @@ | |||
1 | /**************************************************************************** | 1 | /**************************************************************************** |
2 | * Driver for Solarflare Solarstorm network controllers and boards | 2 | * Driver for Solarflare Solarstorm network controllers and boards |
3 | * Copyright 2005 Fen Systems Ltd. | 3 | * Copyright 2005 Fen Systems Ltd. |
4 | * Copyright 2006 Solarflare Communications Inc. | 4 | * Copyright 2006-2010 Solarflare Communications Inc. |
5 | * | 5 | * |
6 | * This program is free software; you can redistribute it and/or modify it | 6 | * This program is free software; you can redistribute it and/or modify it |
7 | * under the terms of the GNU General Public License version 2 as published | 7 | * under the terms of the GNU General Public License version 2 as published |
@@ -61,6 +61,11 @@ struct efx_spi_device { | |||
61 | unsigned int block_size; | 61 | unsigned int block_size; |
62 | }; | 62 | }; |
63 | 63 | ||
64 | static inline bool efx_spi_present(const struct efx_spi_device *spi) | ||
65 | { | ||
66 | return spi->size != 0; | ||
67 | } | ||
68 | |||
64 | int falcon_spi_cmd(struct efx_nic *efx, | 69 | int falcon_spi_cmd(struct efx_nic *efx, |
65 | const struct efx_spi_device *spi, unsigned int command, | 70 | const struct efx_spi_device *spi, unsigned int command, |
66 | int address, const void* in, void *out, size_t len); | 71 | int address, const void* in, void *out, size_t len); |