mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-05 22:12:16 +00:00
net_sched: remove unnecessary parentheses while return
return is not a function, parentheses are not required. Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
109744c7cf
commit
17569faedf
2 changed files with 3 additions and 2 deletions
|
@ -191,7 +191,8 @@ u32 tcf_hash_new_index(u32 *idx_gen, struct tcf_hashinfo *hinfo)
|
||||||
val = 1;
|
val = 1;
|
||||||
} while (tcf_hash_lookup(val, hinfo));
|
} while (tcf_hash_lookup(val, hinfo));
|
||||||
|
|
||||||
return (*idx_gen = val);
|
*idx_gen = val;
|
||||||
|
return val;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(tcf_hash_new_index);
|
EXPORT_SYMBOL(tcf_hash_new_index);
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,7 @@ struct dsmark_qdisc_data {
|
||||||
|
|
||||||
static inline int dsmark_valid_index(struct dsmark_qdisc_data *p, u16 index)
|
static inline int dsmark_valid_index(struct dsmark_qdisc_data *p, u16 index)
|
||||||
{
|
{
|
||||||
return (index <= p->indices && index > 0);
|
return index <= p->indices && index > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ------------------------- Class/flow operations ------------------------- */
|
/* ------------------------- Class/flow operations ------------------------- */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue