aboutsummaryrefslogtreecommitdiff
path: root/datapath/table.c
diff options
context:
space:
mode:
authorJesse Gross <jesse@nicira.com>2010-07-14 19:27:18 -0700
committerJesse Gross <jesse@nicira.com>2010-07-15 15:09:08 -0700
commitfceb2a5bb2063023777fc75c68a2670b5169fa13 (patch)
tree27a9dfa030bd8779afaa59d6881b10479a550953 /datapath/table.c
parent10d3515aa4fc0d338df28d2760fae264c0cea40a (diff)
datapath: Put return type on same line as arguments for functions.
In some places we would put the return type on the same line as the rest of the function definition and other places we wouldn't. Reformat everything to match kernel style.
Diffstat (limited to 'datapath/table.c')
-rw-r--r--datapath/table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/datapath/table.c b/datapath/table.c
index e4561d69..5ea2c93b 100644
--- a/datapath/table.c
+++ b/datapath/table.c
@@ -367,7 +367,7 @@ int tbl_insert(struct tbl *table, struct tbl_node *target, u32 hash)
}
/**
- * tbl_delete - remove object from table
+ * tbl_remove - remove object from table
* @table: table from which to remove object
* @target: tbl_node inside of object to remove
*