From: Paul Gortmaker Date: Mon, 28 Feb 2011 15:36:21 +0000 (-0400) Subject: tipc: cosmetic - function names are not to be full sentences X-Git-Tag: v2.6.39-rc1~468^2~60^2~13 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f19afb2dbc885befef2a4e7931dfcb51702a212;p=pandora-kernel.git tipc: cosmetic - function names are not to be full sentences Function names like "tipc_node_has_redundant_links" are unweildy and result in long lines even for simple lines. The "has" doesn't contribute any value add, so dropping that is a slight step in the right direction. This is a cosmetic change, basic result of: for i in `grep -l tipc_node_has_ *` ; do sed -i s/tipc_node_has_/tipc_node_/ $i ; done Signed-off-by: Paul Gortmaker --- Reading git-diff-tree failed