Skip to content

Commit

Permalink
appletalk: fix checkpatch errors with foo* bar|foo * bar
Browse files Browse the repository at this point in the history
fix checkpatch errors below:
ERROR: "foo* bar" should be "foo *bar"
ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Wang Weidong <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
wangweidong authored and davem330 committed Feb 14, 2014
1 parent fd1dc26 commit 6f0984a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/appletalk/ddp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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_addr* proxy_addr)
struct atalk_addr *proxy_addr)
{
int netrange = ntohs(atif->nets.nr_lastnet) -
ntohs(atif->nets.nr_firstnet) + 1;
Expand Down Expand Up @@ -581,7 +581,7 @@ static int atrtr_create(struct rtentry *r, struct net_device *devhint)
}

/* 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;
Expand Down

0 comments on commit 6f0984a

Please sign in to comment.