]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
brcmfmac: remove empty brcmf_proto_stop
authorFranky Lin <frankyl@broadcom.com>
Fri, 29 Nov 2013 10:48:17 +0000 (11:48 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 2 Dec 2013 19:25:17 +0000 (14:25 -0500)
remove empty brcmf_proto_stop from protocol layer

Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com>
Reviewed-by: Arend Van Spriel <arend@broadcom.com>
Reviewed-by: Hante Meuleman <meuleman@broadcom.com>
Signed-off-by: Franky Lin <frankyl@broadcom.com>
Signed-off-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/brcm80211/brcmfmac/dhd_cdc.c
drivers/net/wireless/brcm80211/brcmfmac/dhd_linux.c
drivers/net/wireless/brcm80211/brcmfmac/dhd_proto.h

index dd85401063cb1e484fe47f423b91d4bd3f9f39af..42aaf104cc447508e1cd17884cbca89c37609dac 100644 (file)
@@ -385,8 +385,3 @@ void brcmf_proto_detach(struct brcmf_pub *drvr)
        kfree(drvr->prot);
        drvr->prot = NULL;
 }
-
-void brcmf_proto_stop(struct brcmf_pub *drvr)
-{
-       /* Nothing to do for CDC */
-}
index f4eeaa1b7319c778d21bdd6067e12a691063eb6d..c34ca703d2a3982a9c4c6b4e628741e8dc8ed3ec 100644 (file)
@@ -1150,9 +1150,6 @@ static void brcmf_bus_detach(struct brcmf_pub *drvr)
        brcmf_dbg(TRACE, "Enter\n");
 
        if (drvr) {
-               /* Stop the protocol module */
-               brcmf_proto_stop(drvr);
-
                /* Stop the bus module */
                brcmf_bus_stop(drvr->bus_if);
        }
index 53c6e710f2cb243c9997e9bb6f453a60b3f7634b..d633362a52d0651821bb2e249274e52a6a9e1c81 100644 (file)
@@ -27,9 +27,6 @@ int brcmf_proto_attach(struct brcmf_pub *drvr);
 /* Unlink, frees allocated protocol memory (including brcmf_proto) */
 void brcmf_proto_detach(struct brcmf_pub *drvr);
 
-/* Stop protocol: sync w/dongle state. */
-void brcmf_proto_stop(struct brcmf_pub *drvr);
-
 /* Add any protocol-specific data header.
  * Caller must reserve prot_hdrlen prepend space.
  */