Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
9c6e9aa8
Commit
9c6e9aa8
authored
Oct 29, 2010
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
beceem: remove dead code
Signed-off-by:
Stephen Hemminger
<
shemminger@vyatta.com
>
parent
d21d6dde
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
50 deletions
+0
-50
drivers/staging/bcm/InterfaceTx.c
drivers/staging/bcm/InterfaceTx.c
+0
-44
drivers/staging/bcm/InterfaceTx.h
drivers/staging/bcm/InterfaceTx.h
+0
-6
No files found.
drivers/staging/bcm/InterfaceTx.c
View file @
9c6e9aa8
#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*/
)
{
...
...
drivers/staging/bcm/InterfaceTx.h
View file @
9c6e9aa8
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment