Skip to content

Commit

Permalink
sfc: Fix type of FALCON_SPI_MAX_LEN
Browse files Browse the repository at this point in the history
FALCON_SPI_MAX_LEN has type size_t while other SPI lengths have type
unsigned int.  This results in warnings from min() on 64-bit
architectures where they are different.  Add a cast to make it match.

From: Steve Hodgson <shodgson@solarflare.com>
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
  • Loading branch information
Ben Hutchings authored and Jeff Garzik committed Sep 24, 2008
1 parent 13e9ab1 commit 31b7602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/sfc/falcon.c
Original file line number Diff line number Diff line change
Expand Up @@ -1605,7 +1605,7 @@ void falcon_fini_interrupt(struct efx_nic *efx)
**************************************************************************
*/

#define FALCON_SPI_MAX_LEN sizeof(efx_oword_t)
#define FALCON_SPI_MAX_LEN ((unsigned) sizeof(efx_oword_t))

/* Wait for SPI command completion */
static int falcon_spi_wait(struct efx_nic *efx)
Expand Down

0 comments on commit 31b7602

Please sign in to comment.