Skip to content

Commit

Permalink
arcnet: capmode: remove extra function
Browse files Browse the repository at this point in the history
This patch cleans the capmode protocol module. It removes the obsolete
function arcnet_cap_init and replaces printk with pr_info.

Signed-off-by: Michael Grzeschik <[email protected]>
  • Loading branch information
mgrzeschik committed Sep 23, 2015
1 parent abc23ec commit 834c952
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions drivers/net/arcnet/capmode.c
Original file line number Diff line number Diff line change
Expand Up @@ -238,10 +238,12 @@ static struct ArcProto capmode_proto = {
.ack_tx = ack_tx
};

static void arcnet_cap_init(void)
static int __init capmode_module_init(void)
{
int count;

pr_info("cap mode (`c') encapsulation support loaded\n");

for (count = 1; count <= 8; count++)
if (arc_proto_map[count] == arc_proto_default)
arc_proto_map[count] = &capmode_proto;
Expand All @@ -252,12 +254,7 @@ static void arcnet_cap_init(void)

arc_proto_default = &capmode_proto;
arc_raw_proto = &capmode_proto;
}

static int __init capmode_module_init(void)
{
pr_info("%s\n", "cap mode (`c') encapsulation support loaded");
arcnet_cap_init();
return 0;
}

Expand Down

0 comments on commit 834c952

Please sign in to comment.