Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9c6e9aa8 authored by Stephen Hemminger's avatar Stephen Hemminger
Browse files

beceem: remove dead code

parent d21d6dde
Loading
Loading
Loading
Loading
+0 −44
Original line number Diff line number Diff line
#include "headers.h"


/*
Function:				InterfaceTxDataPacket

Description:			This is the hardware specific Function for Transmitting
						data packet to the device.

Input parameters:		IN PMINI_ADAPTER Adapter   - Miniport Adapter Context
						PVOID Packet				-  Packet Containing the data to be transmitted
						USHORT usVcid			   - VCID on which data packet is to be sent


Return:				BCM_STATUS_SUCCESS - If Tx was successful.
						Other           - If an error occured.
*/

ULONG InterfaceTxDataPacket(PMINI_ADAPTER Adapter,PVOID Packet,USHORT usVcid)
{
	ULONG	Status = 0;
	return Status;
}

/*
Function:				InterfaceTxControlPacket

Description:			This is the hardware specific Function for Transmitting
						control packet to the device.

Input parameters:		IN PMINI_ADAPTER Adapter   - Miniport Adapter Context
						PVOID pvBuffer			   - Buffer containg control packet
						UINT uiBufferLength		   - Buffer Length

Return:				BCM_STATUS_SUCCESS - If control packet transmit was successful.
						Other           - If an error occured.
*/

ULONG InterfaceTxControlPacket(PMINI_ADAPTER Adapter,PVOID pvBuffer,UINT uiBufferLength)
{
	ULONG	Status = 0;



	return Status;
}
/*this is transmit call-back(BULK OUT)*/
static void write_bulk_callback(struct urb *urb/*, struct pt_regs *regs*/)
{
+0 −6
Original line number Diff line number Diff line
@@ -3,11 +3,5 @@

INT InterfaceTransmitPacket(PVOID arg, PVOID data, UINT len);


ULONG InterfaceTxDataPacket(PMINI_ADAPTER Adapter,PVOID Packet,USHORT usVcid);

ULONG InterfaceTxControlPacket(PMINI_ADAPTER Adapter,PVOID pvBuffer,UINT uiBufferLength);


#endif