Skip to content

Commit

Permalink
can: mcp251x: define helper functions mcp251x_is_2510, mcp251x_is_2515
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Acked-by: Wolfgang Grandegger <wg@grandegger.com>
  • Loading branch information
Marc Kleine-Budde committed Oct 18, 2010
1 parent f1f8c6c commit beab675
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions drivers/net/can/mcp251x.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,16 @@ struct mcp251x_priv {
int restart_tx;
};

#define MCP251X_IS(_model) \
static inline int mcp251x_is_##_model(struct spi_device *spi) \
{ \
struct mcp251x_priv *priv = dev_get_drvdata(&spi->dev); \
return priv->model == CAN_MCP251X_MCP##_model; \
}

MCP251X_IS(2510);
MCP251X_IS(2515);

static void mcp251x_clean(struct net_device *net)
{
struct mcp251x_priv *priv = netdev_priv(net);
Expand Down Expand Up @@ -370,7 +380,7 @@ static void mcp251x_hw_tx_frame(struct spi_device *spi, u8 *buf,
{
struct mcp251x_priv *priv = dev_get_drvdata(&spi->dev);

if (priv->model == CAN_MCP251X_MCP2510) {
if (mcp251x_is_2510(spi)) {
int i;

for (i = 1; i < TXBDAT_OFF + len; i++)
Expand Down Expand Up @@ -414,7 +424,7 @@ static void mcp251x_hw_rx_frame(struct spi_device *spi, u8 *buf,
{
struct mcp251x_priv *priv = dev_get_drvdata(&spi->dev);

if (priv->model == CAN_MCP251X_MCP2510) {
if (mcp251x_is_2510(spi)) {
int i, len;

for (i = 1; i < RXBDAT_OFF; i++)
Expand Down

0 comments on commit beab675

Please sign in to comment.