[PATCH] libertas: get rid of libertas_sbi_get_priv()
It's not really needed, because we can call wlan_remove_card() with wlan_private* anyway. Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
ed37b51610
commit
1ac812f161
@@ -231,7 +231,7 @@ static void if_usb_disconnect(struct usb_interface *intf)
|
||||
/* card is removed and we can call wlan_remove_card */
|
||||
lbs_deb_usbd(&cardp->udev->dev, "call remove card\n");
|
||||
wlan_remove_mesh(priv);
|
||||
wlan_remove_card(cardp);
|
||||
wlan_remove_card(priv);
|
||||
|
||||
/* Unlink and free urb */
|
||||
if_usb_free(cardp);
|
||||
@@ -854,17 +854,6 @@ done:
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Given a usb_card_rec return its wlan_private
|
||||
* @param card pointer to a usb_card_rec
|
||||
* @return pointer to wlan_private
|
||||
*/
|
||||
wlan_private *libertas_sbi_get_priv(void *card)
|
||||
{
|
||||
struct usb_card_rec *cardp = card;
|
||||
return cardp->priv;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_PM
|
||||
static int if_usb_suspend(struct usb_interface *intf, pm_message_t message)
|
||||
{
|
||||
|
Reference in New Issue
Block a user