diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-12-22 12:52:52 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:07:58 -0500 |
commit | 904584018e9ba30a3e562d86ee7dfb6239105664 (patch) | |
tree | 4ca6856a732c4d8e98f0537ddf196a98e9058250 /drivers/net/wan/lmc | |
parent | a3edb08311fc559652ffc959e93eb5be9294443f (diff) |
annotate the rest of drivers/net/wan
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/wan/lmc')
-rw-r--r-- | drivers/net/wan/lmc/lmc_proto.c | 2 | ||||
-rw-r--r-- | drivers/net/wan/lmc/lmc_proto.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wan/lmc/lmc_proto.c b/drivers/net/wan/lmc/lmc_proto.c index 426c0678d983..85315758198d 100644 --- a/drivers/net/wan/lmc/lmc_proto.c +++ b/drivers/net/wan/lmc/lmc_proto.c | |||
@@ -208,7 +208,7 @@ void lmc_proto_close(lmc_softc_t *sc) /*FOLD00*/ | |||
208 | lmc_trace(sc->lmc_device, "lmc_proto_close out"); | 208 | lmc_trace(sc->lmc_device, "lmc_proto_close out"); |
209 | } | 209 | } |
210 | 210 | ||
211 | unsigned short lmc_proto_type(lmc_softc_t *sc, struct sk_buff *skb) /*FOLD00*/ | 211 | __be16 lmc_proto_type(lmc_softc_t *sc, struct sk_buff *skb) /*FOLD00*/ |
212 | { | 212 | { |
213 | lmc_trace(sc->lmc_device, "lmc_proto_type in"); | 213 | lmc_trace(sc->lmc_device, "lmc_proto_type in"); |
214 | switch(sc->if_type){ | 214 | switch(sc->if_type){ |
diff --git a/drivers/net/wan/lmc/lmc_proto.h b/drivers/net/wan/lmc/lmc_proto.h index 080a55773349..ccaa69e8b3c7 100644 --- a/drivers/net/wan/lmc/lmc_proto.h +++ b/drivers/net/wan/lmc/lmc_proto.h | |||
@@ -8,7 +8,7 @@ void lmc_proto_reopen(lmc_softc_t *sc); | |||
8 | int lmc_proto_ioctl(lmc_softc_t *sc, struct ifreq *ifr, int cmd); | 8 | int lmc_proto_ioctl(lmc_softc_t *sc, struct ifreq *ifr, int cmd); |
9 | void lmc_proto_open(lmc_softc_t *sc); | 9 | void lmc_proto_open(lmc_softc_t *sc); |
10 | void lmc_proto_close(lmc_softc_t *sc); | 10 | void lmc_proto_close(lmc_softc_t *sc); |
11 | unsigned short lmc_proto_type(lmc_softc_t *sc, struct sk_buff *skb); | 11 | __be16 lmc_proto_type(lmc_softc_t *sc, struct sk_buff *skb); |
12 | void lmc_proto_netif(lmc_softc_t *sc, struct sk_buff *skb); | 12 | void lmc_proto_netif(lmc_softc_t *sc, struct sk_buff *skb); |
13 | int lmc_skb_rawpackets(char *buf, char **start, off_t offset, int len, int unused); | 13 | int lmc_skb_rawpackets(char *buf, char **start, off_t offset, int len, int unused); |
14 | 14 | ||