Commit 1228cd13 authored by Devendra Naga's avatar Devendra Naga Committed by Greg Kroah-Hartman

staging: sbe-2t3e3: fix sparse warnings

warnings:
drivers/staging/sbe-2t3e3/netdev.c:24:5: warning: symbol 't3e3_ioctl' was not declared. Should it be static?
drivers/staging/sbe-2t3e3/netdev.c:85:5: warning: symbol 't3e3_open' was not declared. Should it be static?
drivers/staging/sbe-2t3e3/netdev.c:100:5: warning: symbol 't3e3_close' was not declared. Should it be static?
Signed-off-by: default avatarDevendra Naga <devendra.aaru@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 03bbb232
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include "2t3e3.h" #include "2t3e3.h"
int t3e3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) static int t3e3_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
{ {
struct channel *sc = dev_to_priv(dev); struct channel *sc = dev_to_priv(dev);
int cmd_2t3e3, len, rlen; int cmd_2t3e3, len, rlen;
...@@ -82,7 +82,7 @@ static struct net_device_stats* t3e3_get_stats(struct net_device *dev) ...@@ -82,7 +82,7 @@ static struct net_device_stats* t3e3_get_stats(struct net_device *dev)
return nstats; return nstats;
} }
int t3e3_open(struct net_device *dev) static int t3e3_open(struct net_device *dev)
{ {
struct channel *sc = dev_to_priv(dev); struct channel *sc = dev_to_priv(dev);
int ret = hdlc_open(dev); int ret = hdlc_open(dev);
...@@ -97,7 +97,7 @@ int t3e3_open(struct net_device *dev) ...@@ -97,7 +97,7 @@ int t3e3_open(struct net_device *dev)
return 0; return 0;
} }
int t3e3_close(struct net_device *dev) static int t3e3_close(struct net_device *dev)
{ {
struct channel *sc = dev_to_priv(dev); struct channel *sc = dev_to_priv(dev);
hdlc_close(dev); hdlc_close(dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment