Staging: w35und: make wb35_probe() and wb35_disconnect() funtions static
The wb35_probe() and wb35_disconnect() functions are only used in wbusb.c so make them static and remove them from a header file. Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi> Acked-by: Pavel Machek <pavel@suse.cz> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
a337957247
commit
302bae8548
2 changed files with 2 additions and 31 deletions
|
@ -185,9 +185,7 @@ static const struct ieee80211_ops wbsoft_ops = {
|
||||||
struct wbsoft_priv {
|
struct wbsoft_priv {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static int wb35_probe(struct usb_interface *intf, const struct usb_device_id *id_table)
|
||||||
// Usb kernel subsystem will call this function when a new device is plugged into.
|
|
||||||
int wb35_probe(struct usb_interface *intf, const struct usb_device_id *id_table)
|
|
||||||
{
|
{
|
||||||
PADAPTER Adapter;
|
PADAPTER Adapter;
|
||||||
PWBLINUX pWbLinux;
|
PWBLINUX pWbLinux;
|
||||||
|
@ -334,30 +332,7 @@ WbUsb_destroy(phw_data_t pHwData)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
int wb35_open(struct net_device *netdev)
|
static void wb35_disconnect(struct usb_interface *intf)
|
||||||
{
|
|
||||||
/* netdev_priv() or netdev->ml_priv should reference to the address of
|
|
||||||
* private data(PADAPTER). It depends on whether private data memory is
|
|
||||||
* allocated when alloc_netdev().
|
|
||||||
*/
|
|
||||||
PADAPTER Adapter = (PADAPTER)netdev_priv(netdev);
|
|
||||||
phw_data_t pHwData = &Adapter->sHwData;
|
|
||||||
|
|
||||||
netif_start_queue(netdev);
|
|
||||||
|
|
||||||
//TODO : put here temporarily
|
|
||||||
hal_set_accept_broadcast(pHwData, 1); // open accept broadcast
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
int wb35_close(struct net_device *netdev)
|
|
||||||
{
|
|
||||||
netif_stop_queue(netdev);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void wb35_disconnect(struct usb_interface *intf)
|
|
||||||
{
|
{
|
||||||
PWBLINUX pWbLinux;
|
PWBLINUX pWbLinux;
|
||||||
PADAPTER Adapter = usb_get_intfdata(intf);
|
PADAPTER Adapter = usb_get_intfdata(intf);
|
||||||
|
|
|
@ -18,10 +18,6 @@ void WbUsb_destroy(phw_data_t pHwData);
|
||||||
unsigned char WbWLanInitialize(PADAPTER Adapter);
|
unsigned char WbWLanInitialize(PADAPTER Adapter);
|
||||||
#define WbUsb_Stop( _A )
|
#define WbUsb_Stop( _A )
|
||||||
|
|
||||||
int wb35_probe(struct usb_interface *intf,const struct usb_device_id *id_table);
|
|
||||||
void wb35_disconnect(struct usb_interface *intf);
|
|
||||||
|
|
||||||
|
|
||||||
#define wb_usb_submit_urb(_A) usb_submit_urb(_A, GFP_ATOMIC)
|
#define wb_usb_submit_urb(_A) usb_submit_urb(_A, GFP_ATOMIC)
|
||||||
#define wb_usb_alloc_urb(_A) usb_alloc_urb(_A, GFP_ATOMIC)
|
#define wb_usb_alloc_urb(_A) usb_alloc_urb(_A, GFP_ATOMIC)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue