Skip to content

Commit

Permalink
dccp: cosmetics of info message
Browse files Browse the repository at this point in the history
Change the CCID (de)activation message to start with the
protocol name, as 'CCID' is already in there.

Signed-off-by: Gerrit Renker <[email protected]>
  • Loading branch information
Gerrit Renker committed Jul 4, 2011
1 parent 8695e80 commit 1fd9d20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/dccp/ccid.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ static int ccid_activate(struct ccid_operations *ccid_ops)
if (ccid_ops->ccid_hc_tx_slab == NULL)
goto out_free_rx_slab;

pr_info("CCID: Activated CCID %d (%s)\n",
pr_info("DCCP: Activated CCID %d (%s)\n",
ccid_ops->ccid_id, ccid_ops->ccid_name);
err = 0;
out:
Expand All @@ -136,7 +136,7 @@ static void ccid_deactivate(struct ccid_operations *ccid_ops)
ccid_kmem_cache_destroy(ccid_ops->ccid_hc_rx_slab);
ccid_ops->ccid_hc_rx_slab = NULL;

pr_info("CCID: Deactivated CCID %d (%s)\n",
pr_info("DCCP: Deactivated CCID %d (%s)\n",
ccid_ops->ccid_id, ccid_ops->ccid_name);
}

Expand Down

0 comments on commit 1fd9d20

Please sign in to comment.