mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 01/26] w35und: Remove unused struct _RXLAYER1
@ 2010-03-01 15:04 Pekka Enberg
  2010-03-01 15:04 ` [PATCH 02/26] w35und: Remove unused struct _EVENTLOG Pekka Enberg
                   ` (25 more replies)
  0 siblings, 26 replies; 30+ messages in thread
From: Pekka Enberg @ 2010-03-01 15:04 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, Pekka Enberg, Pavel Machek

Cc: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
---
 drivers/staging/winbond/mds_f.h |    3 ---
 drivers/staging/winbond/mds_s.h |   28 ----------------------------
 2 files changed, 0 insertions(+), 31 deletions(-)

diff --git a/drivers/staging/winbond/mds_f.h b/drivers/staging/winbond/mds_f.h
index ab1ea53..e09dd4b 100644
--- a/drivers/staging/winbond/mds_f.h
+++ b/drivers/staging/winbond/mds_f.h
@@ -11,9 +11,6 @@ void Mds_SendComplete(  struct wbsoft_priv *adapter,  PT02_DESCRIPTOR pT02 );
 void Mds_MpduProcess(  struct wbsoft_priv *adapter,  struct wb35_descriptor *pRxDes );
 extern void DataDmp(u8 *pdata, u32 len, u32 offset);
 
-// For Asynchronous indicating. The routine collocates with USB.
-void Mds_MsduProcess(  struct wbsoft_priv *adapter,  PRXLAYER1 pRxLayer1,  u8 SlotIndex);
-
 // For data frame sending 20060802
 u16 MDS_GetPacketSize(  struct wbsoft_priv *adapter );
 void MDS_GetNextPacket(  struct wbsoft_priv *adapter,  struct wb35_descriptor *pDes );
diff --git a/drivers/staging/winbond/mds_s.h b/drivers/staging/winbond/mds_s.h
index e8e13bd..217ff08 100644
--- a/drivers/staging/winbond/mds_s.h
+++ b/drivers/staging/winbond/mds_s.h
@@ -133,32 +133,4 @@ struct wb35_mds {
 
 };
 
-//
-// Reveive Layer 1 Format.
-//----------------------------
-typedef struct _RXLAYER1
-{
-    u16  SequenceNumber;     // The sequence number of the last received packet.
-	u16	BufferTotalSize;
-
-	u32	InUsed;
-    u32   DecryptionMethod;   // The desired defragment number of the next incoming packet.
-
-	u8	DeFragmentNumber;
-	u8	FrameType;
-    u8	TypeEncapsulated;
-	u8	BufferNumber;
-
-	u32	FirstFrameArrivedTime;
-
-	u8		LastFrameType; // 20061004 for fix intel 3945 's bug
-	u8		RESERVED[3];  //@@ anson
-
-	/////////////////////////////////////////////////////////////////////////////////////////////
-	// For brand-new Rx system
-	u8	ReservedBuffer[ 2400 ];//If Buffer ID is reserved one, it must copy the data into this area
-	u8	*ReservedBufferPoint;// Point to the next availabe address of reserved buffer
-
-}RXLAYER1, * PRXLAYER1;
-
 #endif
-- 
1.6.3.3


^ permalink raw reply	[flat|nested] 30+ messages in thread

end of thread, other threads:[~2010-03-03 21:50 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-01 15:04 [PATCH 01/26] w35und: Remove unused struct _RXLAYER1 Pekka Enberg
2010-03-01 15:04 ` [PATCH 02/26] w35und: Remove unused struct _EVENTLOG Pekka Enberg
2010-03-02  5:26   ` Pavel Machek
2010-03-01 15:04 ` [PATCH 03/26] w35und: Remove unused struct _CHAN_LIST Pekka Enberg
2010-03-01 15:04 ` [PATCH 04/26] w35und: Remove unused enum enum_PowerManagementMode Pekka Enberg
2010-03-01 15:04 ` [PATCH 05/26] w35und: Remove unused enum enum_TxRate Pekka Enberg
2010-03-01 15:04 ` [PATCH 06/26] w35und: Remove unused struct _PMKID Pekka Enberg
2010-03-01 15:04 ` [PATCH 07/26] w35und: Remove unused struct _SUITE_SELECTOR_ Pekka Enberg
2010-03-01 15:04 ` [PATCH 08/26] w35und: Remove unused typedef TXRETRY_REC Pekka Enberg
2010-03-01 15:04 ` [PATCH 09/26] w35und: Remove unused struct _Reason_Code Pekka Enberg
2010-03-01 15:04 ` [PATCH 10/26] w35und: Remove unused struct _SCAN_REQ_PARA Pekka Enberg
2010-03-01 15:04 ` [PATCH 11/26] w35und: Remove unused header file scan_s.h Pekka Enberg
2010-03-01 15:04 ` [PATCH 12/26] w35und: Remove unused structs _AUTHREQ, _ASSOCREQ, and _REASSOCREQ Pekka Enberg
2010-03-01 15:04 ` [PATCH 13/26] w35und: Remove unused struct _MLMECALLBACK Pekka Enberg
2010-03-03 21:50   ` Pavel Machek
2010-03-01 15:04 ` [PATCH 14/26] w35und: Convert ChanInfo typedef to struct wb35_chan_info Pekka Enberg
2010-03-01 15:04 ` [PATCH 15/26] w35und: Convert RadioOff typedef to struct wb35_radio_off Pekka Enberg
2010-03-01 15:04 ` [PATCH 16/26] w35und: Convert WB_LOCALDESCRIPT typedef to struct wb35_local_para Pekka Enberg
2010-03-01 15:04 ` [PATCH 17/26] w35und: Convert MLME_FRAME typedef to struct wb35_mlme_frame Pekka Enberg
2010-03-01 15:04 ` [PATCH 18/26] w35und: Remove unused struct _RXDATA Pekka Enberg
2010-03-01 15:04 ` [PATCH 19/26] w35und: Convert R00_DESCRIPTOR typedef to struct wb35_R00_descriptor Pekka Enberg
2010-03-01 15:04 ` [PATCH 20/26] w35und: Convert R01_DESCRIPTOR typedef to struct wb35_R01_descriptor Pekka Enberg
2010-03-01 15:04 ` [PATCH 21/26] w35und: Convert T00_DESCRIPTOR typedef to struct wb35_T00_descriptor Pekka Enberg
2010-03-01 15:04 ` [PATCH 22/26] w35und: Convert T01_DESCRIPTOR typedef to struct wb35_T01_descriptor Pekka Enberg
2010-03-01 15:04 ` [PATCH 23/26] w35und: Convert T02_DESCRIPTOR typedef to struct wb35_T02_descriptor Pekka Enberg
2010-03-01 15:04 ` [PATCH 24/26] w35und: Convert _TXVGA_FOR_50 typedef to struct wb35_txvga_for_50 Pekka Enberg
2010-03-01 15:04 ` [PATCH 25/26] w35und: Rename fixed typedef to fixp32_t Pekka Enberg
2010-03-01 15:04 ` [PATCH 26/26] w35und: Update README Pekka Enberg
2010-03-02  6:05   ` Pavel Machek
2010-03-02  5:20 ` [PATCH 01/26] w35und: Remove unused struct _RXLAYER1 Pavel Machek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®