ipa: Reduce the throttling of the IPA msges

This code used to be a sleep, it was changed to be a timer by Andreas
but this timer does not seem to have any use. When doing the sw load
this timer is increasing the upload time dramatically, reduce it to
make it work faster.
This commit is contained in:
Holger Hans Peter Freyther 2010-03-24 08:27:37 +01:00
parent ff9d8b42e6
commit f5284ae1cf
1 changed files with 1 additions and 1 deletions

View File

@ -466,7 +466,7 @@ static int handle_ts1_write(struct bsc_fd *bfd)
/* set tx delay timer for next event */
e1i_ts->sign.tx_timer.cb = timeout_ts1_write;
e1i_ts->sign.tx_timer.data = e1i_ts;
bsc_schedule_timer(&e1i_ts->sign.tx_timer, 0, 100000);
bsc_schedule_timer(&e1i_ts->sign.tx_timer, 0, 100);
return ret;
}