can: mcp251x: mcp251x_setup(): remove unused parameter "struct mcp251x_priv *priv"
The 2nd parameter of mcp251x_setup() "struct mcp251x_priv *priv" is not used, so remove it. Suggested-by: Oleksij Rempel <o.rempel@pengutronix.de> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
dda8deb6cd
commit
aa68172235
1 changed files with 3 additions and 4 deletions
|
@ -612,8 +612,7 @@ static int mcp251x_do_set_bittiming(struct net_device *net)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int mcp251x_setup(struct net_device *net, struct mcp251x_priv *priv,
|
||||
struct spi_device *spi)
|
||||
static int mcp251x_setup(struct net_device *net, struct spi_device *spi)
|
||||
{
|
||||
mcp251x_do_set_bittiming(net);
|
||||
|
||||
|
@ -775,7 +774,7 @@ static void mcp251x_restart_work_handler(struct work_struct *ws)
|
|||
mutex_lock(&priv->mcp_lock);
|
||||
if (priv->after_suspend) {
|
||||
mcp251x_hw_reset(spi);
|
||||
mcp251x_setup(net, priv, spi);
|
||||
mcp251x_setup(net, spi);
|
||||
if (priv->after_suspend & AFTER_SUSPEND_RESTART) {
|
||||
mcp251x_set_normal_mode(spi);
|
||||
} else if (priv->after_suspend & AFTER_SUSPEND_UP) {
|
||||
|
@ -971,7 +970,7 @@ static int mcp251x_open(struct net_device *net)
|
|||
mcp251x_open_clean(net);
|
||||
goto open_unlock;
|
||||
}
|
||||
ret = mcp251x_setup(net, priv, spi);
|
||||
ret = mcp251x_setup(net, spi);
|
||||
if (ret) {
|
||||
mcp251x_open_clean(net);
|
||||
goto open_unlock;
|
||||
|
|
Loading…
Reference in a new issue