mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
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>
This commit is contained in:
parent
be070c77ca
commit
7a0947e755
2 changed files with 2 additions and 3 deletions
|
@ -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_ */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue