diff options
author | Antonio Quartulli <antonio@meshcoding.com> | 2013-11-07 08:02:07 +0100 |
---|---|---|
committer | Antonio Quartulli <antonio@meshcoding.com> | 2014-01-08 20:49:41 +0100 |
commit | 36484f84d567f79fc7cc62c4391c7752a0ede7f2 (patch) | |
tree | d65a0ad2ee000acb909760424f8c21ce52b85f68 /net/batman-adv/distributed-arp-table.c | |
parent | 4e820e72db584e39c7d8699eb359d9a94eb837e3 (diff) | |
download | linux-exynos-36484f84d567f79fc7cc62c4391c7752a0ede7f2.tar.gz linux-exynos-36484f84d567f79fc7cc62c4391c7752a0ede7f2.tar.bz2 linux-exynos-36484f84d567f79fc7cc62c4391c7752a0ede7f2.zip |
batman-adv: remove parenthesis from return statements
Remove parenthesis around return expression as suggested by
checkpatch.
Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch>
Diffstat (limited to 'net/batman-adv/distributed-arp-table.c')
-rw-r--r-- | net/batman-adv/distributed-arp-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/distributed-arp-table.c b/net/batman-adv/distributed-arp-table.c index 01ec607238a7..93e1fb049055 100644 --- a/net/batman-adv/distributed-arp-table.c +++ b/net/batman-adv/distributed-arp-table.c @@ -139,7 +139,7 @@ static int batadv_compare_dat(const struct hlist_node *node, const void *data2) const void *data1 = container_of(node, struct batadv_dat_entry, hash_entry); - return (memcmp(data1, data2, sizeof(__be32)) == 0 ? 1 : 0); + return memcmp(data1, data2, sizeof(__be32)) == 0 ? 1 : 0; } /** |