mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
can: cc770: fix sparse warning for cc770_interrupt
Make cc770_interrupt static to fix the following sparse warning: drivers/net/can/cc770/cc770.c:699:13: warning: symbol 'cc770_interrupt' was not declared. Should it be static? Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
e87183c2b5
commit
ea9f07197c
@ -695,7 +695,7 @@ static void cc770_tx_interrupt(struct net_device *dev, unsigned int o)
|
||||
netif_wake_queue(dev);
|
||||
}
|
||||
|
||||
irqreturn_t cc770_interrupt(int irq, void *dev_id)
|
||||
static irqreturn_t cc770_interrupt(int irq, void *dev_id)
|
||||
{
|
||||
struct net_device *dev = (struct net_device *)dev_id;
|
||||
struct cc770_priv *priv = netdev_priv(dev);
|
||||
|
Loading…
Reference in New Issue
Block a user