diff options
author | Stephen Hemminger <stephen@networkplumber.org> | 2017-10-18 03:16:52 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-19 15:33:51 +0300 |
commit | 7a0947e755084b918e33242fd558e55cb443408e (patch) | |
tree | 0369e4a6596d1cec8eeb1decc39653fca9477bb2 /include/linux/dynamic_queue_limits.h | |
parent | be070c77ca805a4f06f135599415195078f0ed68 (diff) | |
download | linux-7a0947e755084b918e33242fd558e55cb443408e.tar.xz |
dql: make dql_init return void
dql_init always returned 0, and the only place that uses it
in network core code didn't care about the return value anyway.
Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
Acked-by: Hiroaki SHIMODA <shimoda.hiroaki@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/dynamic_queue_limits.h')
-rw-r--r-- | include/linux/dynamic_queue_limits.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/dynamic_queue_limits.h b/include/linux/dynamic_queue_limits.h index a4be70398ce1..f69f98541953 100644 --- a/include/linux/dynamic_queue_limits.h +++ b/include/linux/dynamic_queue_limits.h @@ -98,7 +98,7 @@ void dql_completed(struct dql *dql, unsigned int count); void dql_reset(struct dql *dql); /* Initialize dql state */ -int dql_init(struct dql *dql, unsigned hold_time); +void dql_init(struct dql *dql, unsigned int hold_time); #endif /* _KERNEL_ */ |