]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
appletalk: fix checkpatch errors with foo* bar|foo * bar
authorwangweidong <wangweidong1@huawei.com>
Fri, 14 Feb 2014 07:43:44 +0000 (15:43 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 14 Feb 2014 21:18:32 +0000 (16:18 -0500)
fix checkpatch errors below:
ERROR: "foo* bar" should be "foo *bar"
ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Wang Weidong <wangweidong1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/appletalk/ddp.c

index a878df925a594cdd8c59789fbdff3ae33c48c9a5..06e0d19176d51a22738686f87150ac056415859d 100644 (file)
@@ -293,7 +293,7 @@ static int atif_probe_device(struct atalk_iface *atif)
 
 /* Perform AARP probing for a proxy address */
 static int atif_proxy_probe_device(struct atalk_iface *atif,
-                                  struct atalk_addrproxy_addr)
+                                  struct atalk_addr *proxy_addr)
 {
        int netrange = ntohs(atif->nets.nr_lastnet) -
                        ntohs(atif->nets.nr_firstnet) + 1;
@@ -581,7 +581,7 @@ out:
 }
 
 /* Delete a route. Find it and discard it */
-static int atrtr_delete(struct atalk_addr * addr)
+static int atrtr_delete(struct atalk_addr *addr)
 {
        struct atalk_route **r = &atalk_routes;
        int retval = 0;