aboutsummaryrefslogtreecommitdiffstats
path: root/net/802/psnap.c
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@linux-foundation.org>2009-03-20 01:43:14 -0400
committerDavid S. Miller <davem@davemloft.net>2009-03-21 22:06:50 -0400
commit7ca98fa234afa096ec2a5e7195ad2d32555cca86 (patch)
tree2c54b7eb083de1d1f2d57faa73e690aa2ea202d9 /net/802/psnap.c
parent65689fef7e484631e996541a6772706627b0991a (diff)
snap: use const for descriptor
Protocols should be able to use constant value for the descriptor. Minor whitespace cleanup as well Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Acked-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/802/psnap.c')
-rw-r--r--net/802/psnap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/802/psnap.c b/net/802/psnap.c
index bdbffa3cb043..6fea0750662b 100644
--- a/net/802/psnap.c
+++ b/net/802/psnap.c
@@ -29,7 +29,7 @@ static struct llc_sap *snap_sap;
29/* 29/*
30 * Find a snap client by matching the 5 bytes. 30 * Find a snap client by matching the 5 bytes.
31 */ 31 */
32static struct datalink_proto *find_snap_client(unsigned char *desc) 32static struct datalink_proto *find_snap_client(const unsigned char *desc)
33{ 33{
34 struct datalink_proto *proto = NULL, *p; 34 struct datalink_proto *proto = NULL, *p;
35 35
@@ -122,7 +122,7 @@ module_exit(snap_exit);
122/* 122/*
123 * Register SNAP clients. We don't yet use this for IP. 123 * Register SNAP clients. We don't yet use this for IP.
124 */ 124 */
125struct datalink_proto *register_snap_client(unsigned char *desc, 125struct datalink_proto *register_snap_client(const unsigned char *desc,
126 int (*rcvfunc)(struct sk_buff *, 126 int (*rcvfunc)(struct sk_buff *,
127 struct net_device *, 127 struct net_device *,
128 struct packet_type *, 128 struct packet_type *,
@@ -137,7 +137,7 @@ struct datalink_proto *register_snap_client(unsigned char *desc,
137 137
138 proto = kmalloc(sizeof(*proto), GFP_ATOMIC); 138 proto = kmalloc(sizeof(*proto), GFP_ATOMIC);
139 if (proto) { 139 if (proto) {
140 memcpy(proto->type, desc,5); 140 memcpy(proto->type, desc, 5);
141 proto->rcvfunc = rcvfunc; 141 proto->rcvfunc = rcvfunc;
142 proto->header_length = 5 + 3; /* snap + 802.2 */ 142 proto->header_length = 5 + 3; /* snap + 802.2 */
143 proto->request = snap_request; 143 proto->request = snap_request;