mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-10 14:43:54 +08:00
staging: brcm80211: removed brcmf_sdioh_start() and brcmf_sdioh_stop()
Code cleanup. These functions were empty. Signed-off-by: Roland Vossen <rvossen@broadcom.com> Reviewed-by: Arend van Spriel <arend@broadcom.com> Reviewed-by: Franky Lin <frankyl@broadcom.com> Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
4fbb7b8128
commit
69c9070cb1
@ -93,10 +93,6 @@ extern int brcmf_sdioh_iovar_op(struct sdioh_info *si, const char *name,
|
||||
/* Issue abort to the specified function and clear controller as needed */
|
||||
extern int brcmf_sdioh_abort(struct sdioh_info *si, uint fnc);
|
||||
|
||||
/* Start and Stop SDIO without re-enumerating the SD card. */
|
||||
extern int brcmf_sdioh_start(struct sdioh_info *si, int stage);
|
||||
extern int brcmf_sdioh_stop(struct sdioh_info *si);
|
||||
|
||||
/* Helper function */
|
||||
void *brcmf_sdcard_get_sdioh(struct brcmf_sdio_card *card);
|
||||
|
||||
|
@ -521,16 +521,6 @@ int brcmf_sdcard_abort(struct brcmf_sdio_card *card, uint fn)
|
||||
return brcmf_sdioh_abort(card->sdioh, fn);
|
||||
}
|
||||
|
||||
int brcmf_sdcard_start(struct brcmf_sdio_card *card, int stage)
|
||||
{
|
||||
return brcmf_sdioh_start(card->sdioh, stage);
|
||||
}
|
||||
|
||||
int brcmf_sdcard_stop(struct brcmf_sdio_card *card)
|
||||
{
|
||||
return brcmf_sdioh_stop(card->sdioh);
|
||||
}
|
||||
|
||||
int brcmf_sdcard_query_device(struct brcmf_sdio_card *card)
|
||||
{
|
||||
card->vendevid = (PCI_VENDOR_ID_BROADCOM << 16) | 0;
|
||||
|
@ -921,13 +921,3 @@ static void brcmf_sdioh_irqhandler_f2(struct sdio_func *func)
|
||||
|
||||
ASSERT(sd != NULL);
|
||||
}
|
||||
|
||||
int brcmf_sdioh_start(struct sdioh_info *si, int stage)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int brcmf_sdioh_stop(struct sdioh_info *si)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
@ -190,12 +190,6 @@ extern int brcmf_sdcard_rwdata(struct brcmf_sdio_card *card, uint rw, u32 addr,
|
||||
/* Issue an abort to the specified function */
|
||||
extern int brcmf_sdcard_abort(struct brcmf_sdio_card *card, uint fn);
|
||||
|
||||
/* Start SDIO Host Controller communication */
|
||||
extern int brcmf_sdcard_start(struct brcmf_sdio_card *card, int stage);
|
||||
|
||||
/* Stop SDIO Host Controller communication */
|
||||
extern int brcmf_sdcard_stop(struct brcmf_sdio_card *card);
|
||||
|
||||
/* Returns the "Device ID" of target device on the SDIO bus. */
|
||||
extern int brcmf_sdcard_query_device(struct brcmf_sdio_card *card);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user