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 коммит произвёл Greg Kroah-Hartman
Родитель a984fa5540
Коммит eab6e19307
1 изменённых файлов: 0 добавлений и 1 удалений

Просмотреть файл

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