diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-10-27 14:21:24 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-06 13:51:42 -0800 |
commit | f3d201886d1b6d47bc357798c50ddf9d2072aa2f (patch) | |
tree | 09a0643cde8b2ddba9e26e6f24a19644a50d52a5 | |
parent | 7c126043801fda48761691f643e1138c2d3ead43 (diff) |
Staging: w35und: remove usb_alloc_urb wrapper function
No need for a simple wrapper here.
Cc: Pekka Enberg <penberg@cs.helsinki.fi>
Cc: Pavel Machek <pavel@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/winbond/linux/wb35reg.c | 8 | ||||
-rw-r--r-- | drivers/staging/winbond/linux/wb35rx.c | 2 | ||||
-rw-r--r-- | drivers/staging/winbond/linux/wb35tx.c | 4 | ||||
-rw-r--r-- | drivers/staging/winbond/linux/wbusb_f.h | 7 |
4 files changed, 7 insertions, 14 deletions
diff --git a/drivers/staging/winbond/linux/wb35reg.c b/drivers/staging/winbond/linux/wb35reg.c index c2864b11a5c..191322d2d17 100644 --- a/drivers/staging/winbond/linux/wb35reg.c +++ b/drivers/staging/winbond/linux/wb35reg.c @@ -26,7 +26,7 @@ Wb35Reg_BurstWrite(phw_data_t pHwData, u16 RegisterNo, u32 * pRegisterData, u8 N // Trying to use burst write function if use new hardware UrbSize = sizeof(struct wb35_reg_queue) + DataSize + sizeof(struct usb_ctrlrequest); OS_MEMORY_ALLOC( (void* *)®_queue, UrbSize ); - urb = wb_usb_alloc_urb(0); + urb = usb_alloc_urb(0, GFP_ATOMIC); if( urb && reg_queue ) { reg_queue->DIRECT = 2;// burst write register reg_queue->INDEX = RegisterNo; @@ -175,7 +175,7 @@ Wb35Reg_Write( phw_data_t pHwData, u16 RegisterNo, u32 RegisterValue ) // update the register by send urb request------------------------------------ UrbSize = sizeof(struct wb35_reg_queue) + sizeof(struct usb_ctrlrequest); OS_MEMORY_ALLOC( (void* *)®_queue, UrbSize ); - urb = wb_usb_alloc_urb(0); + urb = usb_alloc_urb(0, GFP_ATOMIC); if (urb && reg_queue) { reg_queue->DIRECT = 1;// burst write register reg_queue->INDEX = RegisterNo; @@ -235,7 +235,7 @@ Wb35Reg_WriteWithCallbackValue( phw_data_t pHwData, u16 RegisterNo, u32 Register // update the register by send urb request------------------------------------ UrbSize = sizeof(struct wb35_reg_queue) + sizeof(struct usb_ctrlrequest); OS_MEMORY_ALLOC((void* *) ®_queue, UrbSize ); - urb = wb_usb_alloc_urb(0); + urb = usb_alloc_urb(0, GFP_ATOMIC); if (urb && reg_queue) { reg_queue->DIRECT = 1;// burst write register reg_queue->INDEX = RegisterNo; @@ -342,7 +342,7 @@ Wb35Reg_Read(phw_data_t pHwData, u16 RegisterNo, u32 * pRegisterValue ) // update the variable by send Urb to read register ------------------------------------ UrbSize = sizeof(struct wb35_reg_queue) + sizeof(struct usb_ctrlrequest); OS_MEMORY_ALLOC( (void* *)®_queue, UrbSize ); - urb = wb_usb_alloc_urb(0); + urb = usb_alloc_urb(0, GFP_ATOMIC); if( urb && reg_queue ) { reg_queue->DIRECT = 0;// read register diff --git a/drivers/staging/winbond/linux/wb35rx.c b/drivers/staging/winbond/linux/wb35rx.c index e565746713e..13269968d17 100644 --- a/drivers/staging/winbond/linux/wb35rx.c +++ b/drivers/staging/winbond/linux/wb35rx.c @@ -168,7 +168,7 @@ unsigned char Wb35Rx_initial(phw_data_t pHwData) // Initial the Buffer Queue Wb35Rx_reset_descriptor( pHwData ); - pWb35Rx->RxUrb = wb_usb_alloc_urb(0); + pWb35Rx->RxUrb = usb_alloc_urb(0, GFP_ATOMIC); return (!!pWb35Rx->RxUrb); } diff --git a/drivers/staging/winbond/linux/wb35tx.c b/drivers/staging/winbond/linux/wb35tx.c index c54ef30a577..9c928eec2f4 100644 --- a/drivers/staging/winbond/linux/wb35tx.c +++ b/drivers/staging/winbond/linux/wb35tx.c @@ -134,11 +134,11 @@ unsigned char Wb35Tx_initial(phw_data_t pHwData) { PWB35TX pWb35Tx = &pHwData->Wb35Tx; - pWb35Tx->Tx4Urb = wb_usb_alloc_urb(0); + pWb35Tx->Tx4Urb = usb_alloc_urb(0, GFP_ATOMIC); if (!pWb35Tx->Tx4Urb) return FALSE; - pWb35Tx->Tx2Urb = wb_usb_alloc_urb(0); + pWb35Tx->Tx2Urb = usb_alloc_urb(0, GFP_ATOMIC); if (!pWb35Tx->Tx2Urb) { usb_free_urb( pWb35Tx->Tx4Urb ); diff --git a/drivers/staging/winbond/linux/wbusb_f.h b/drivers/staging/winbond/linux/wbusb_f.h index db47e1d8625..dd633ba401f 100644 --- a/drivers/staging/winbond/linux/wbusb_f.h +++ b/drivers/staging/winbond/linux/wbusb_f.h @@ -16,12 +16,5 @@ void WbUsb_destroy(phw_data_t pHwData); unsigned char WbWLanInitialize(struct wb35_adapter *adapter); #define WbUsb_Stop( _A ) -#define wb_usb_alloc_urb(_A) usb_alloc_urb(_A, GFP_ATOMIC) - #define WbUsb_CheckForHang( _P ) #define WbUsb_DetectStart( _P, _I ) - - - - - |