drivers: staging: vt6656: Remove not used returned data of function
This function always return TRUE, and it is not used by the funtions who calls it. Signed-off-by: Marcos Paulo de Souza <marcos.mage@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
50d82ad4be
commit
ba768b917f
@ -133,10 +133,9 @@ void MACvWriteMultiAddr(PSDevice pDevice, unsigned int uByteIdx, BYTE byData)
|
||||
* Out:
|
||||
* none
|
||||
*
|
||||
* Return Value: TRUE if success; otherwise FALSE
|
||||
*
|
||||
*/
|
||||
BOOL MACbShutdown (PSDevice pDevice)
|
||||
void MACbShutdown(PSDevice pDevice)
|
||||
{
|
||||
CONTROLnsRequestOutAsyn(pDevice,
|
||||
MESSAGE_TYPE_MACSHUTDOWN,
|
||||
@ -145,7 +144,6 @@ BOOL MACbShutdown (PSDevice pDevice)
|
||||
0,
|
||||
NULL
|
||||
);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void MACvSetBBType(PSDevice pDevice,BYTE byType)
|
||||
|
@ -422,7 +422,7 @@
|
||||
|
||||
void MACvSetMultiAddrByHash(PSDevice pDevice, BYTE byHashIdx);
|
||||
void MACvWriteMultiAddr(PSDevice pDevice, unsigned int uByteIdx, BYTE byData);
|
||||
BOOL MACbShutdown(PSDevice pDevice);
|
||||
void MACbShutdown(PSDevice pDevice);
|
||||
void MACvSetBBType(PSDevice pDevice, BYTE byType);
|
||||
void MACvSetMISCFifo(PSDevice pDevice, WORD wOffset, DWORD dwData);
|
||||
void MACvDisableKeyEntry(PSDevice pDevice, unsigned int uEntryIdx);
|
||||
|
Loading…
Reference in New Issue
Block a user