aboutsummaryrefslogtreecommitdiffstats
path: root/net/phonet/af_phonet.c
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-11-07 02:10:50 -0500
committerDavid S. Miller <davem@davemloft.net>2008-11-07 02:10:50 -0500
commit5c7f0333584128c745fbda845abbe3a32c22d467 (patch)
treef3177803eb94aa9cbc1e28b1626cacfa06341cf3 /net/phonet/af_phonet.c
parentca62059b7ec7267d1d2cab0791d3ed6d033e0583 (diff)
phonet: sparse annotations of protocol, remove forward declaration
net/phonet/af_phonet.c:38:36: error: marked inline, but without a definition net/phonet/pep-gprs.c:63:10: warning: incorrect type in return expression (different base types) net/phonet/pep-gprs.c:63:10: expected int net/phonet/pep-gprs.c:63:10: got restricted __be16 [usertype] <noident> net/phonet/pep-gprs.c:65:10: warning: incorrect type in return expression (different base types) net/phonet/pep-gprs.c:65:10: expected int net/phonet/pep-gprs.c:65:10: got restricted __be16 [usertype] <noident> net/phonet/pep-gprs.c:124:16: warning: incorrect type in assignment (different base types) net/phonet/pep-gprs.c:124:16: expected restricted __be16 [usertype] protocol net/phonet/pep-gprs.c:124:16: got unsigned short [unsigned] [usertype] protocol Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/phonet/af_phonet.c')
-rw-r--r--net/phonet/af_phonet.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/net/phonet/af_phonet.c b/net/phonet/af_phonet.c
index defeb7a0d502..f400ff168904 100644
--- a/net/phonet/af_phonet.c
+++ b/net/phonet/af_phonet.c
@@ -35,7 +35,11 @@
35 35
36static struct net_proto_family phonet_proto_family; 36static struct net_proto_family phonet_proto_family;
37static struct phonet_protocol *phonet_proto_get(int protocol); 37static struct phonet_protocol *phonet_proto_get(int protocol);
38static inline void phonet_proto_put(struct phonet_protocol *pp); 38
39static inline void phonet_proto_put(struct phonet_protocol *pp)
40{
41 module_put(pp->prot->owner);
42}
39 43
40/* protocol family functions */ 44/* protocol family functions */
41 45
@@ -428,11 +432,6 @@ static struct phonet_protocol *phonet_proto_get(int protocol)
428 return pp; 432 return pp;
429} 433}
430 434
431static inline void phonet_proto_put(struct phonet_protocol *pp)
432{
433 module_put(pp->prot->owner);
434}
435
436/* Module registration */ 435/* Module registration */
437static int __init phonet_init(void) 436static int __init phonet_init(void)
438{ 437{