staging/vt6656: remove unnecessary return in BSSvSecondTxData

this return is at the function end, and function is returning nothing..
i.e a void.

Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Devendra Naga 2012-07-14 02:06:52 +05:45 committed by Greg Kroah-Hartman
parent a984fa5540
commit eab6e19307
1 changed files with 0 additions and 1 deletions

View File

@ -1300,5 +1300,4 @@ void BSSvSecondTxData(void *hDeviceContext)
pDevice->sTimerTxData.expires = RUN_AT(10 * HZ); //10s callback
add_timer(&pDevice->sTimerTxData);
return;
}