Commit 888bf76e authored by Hante Meuleman's avatar Hante Meuleman Committed by John W. Linville

brcmfmac: (clean) Rename sdio related files.

Rename sdio_host.h to sdio.h and dhd_sdio.c to sdio.c.
Reviewed-by: default avatarArend Van Spriel <arend@broadcom.com>
Reviewed-by: default avatarPieter-Paul Giesberts <pieterpg@broadcom.com>
Signed-off-by: default avatarHante Meuleman <meuleman@broadcom.com>
Signed-off-by: default avatarArend van Spriel <arend@broadcom.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent bfe81975
...@@ -43,7 +43,7 @@ brcmfmac-$(CONFIG_BRCMFMAC_PROTO_MSGBUF) += \ ...@@ -43,7 +43,7 @@ brcmfmac-$(CONFIG_BRCMFMAC_PROTO_MSGBUF) += \
flowring.o \ flowring.o \
msgbuf.o msgbuf.o
brcmfmac-$(CONFIG_BRCMFMAC_SDIO) += \ brcmfmac-$(CONFIG_BRCMFMAC_SDIO) += \
dhd_sdio.o \ sdio.o \
bcmsdh.o bcmsdh.o
brcmfmac-$(CONFIG_BRCMFMAC_USB) += \ brcmfmac-$(CONFIG_BRCMFMAC_USB) += \
usb.o usb.o
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
#include "chip.h" #include "chip.h"
#include "bus.h" #include "bus.h"
#include "debug.h" #include "debug.h"
#include "sdio_host.h" #include "sdio.h"
#include "of.h" #include "of.h"
#define SDIOH_API_ACCESS_RETRY_LIMIT 2 #define SDIOH_API_ACCESS_RETRY_LIMIT 2
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include <defs.h> #include <defs.h>
#include "debug.h" #include "debug.h"
#include "sdio_host.h" #include "sdio.h"
void brcmf_of_probe(struct brcmf_sdio_dev *sdiodev) void brcmf_of_probe(struct brcmf_sdio_dev *sdiodev)
{ {
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
#include <brcmu_utils.h> #include <brcmu_utils.h>
#include <brcm_hw_ids.h> #include <brcm_hw_ids.h>
#include <soc.h> #include <soc.h>
#include "sdio_host.h" #include "sdio.h"
#include "chip.h" #include "chip.h"
#include "firmware.h" #include "firmware.h"
...@@ -4076,7 +4076,7 @@ struct brcmf_sdio *brcmf_sdio_probe(struct brcmf_sdio_dev *sdiodev) ...@@ -4076,7 +4076,7 @@ struct brcmf_sdio *brcmf_sdio_probe(struct brcmf_sdio_dev *sdiodev)
/* platform specific configuration: /* platform specific configuration:
* alignments must be at least 4 bytes for ADMA * alignments must be at least 4 bytes for ADMA
*/ */
bus->head_align = ALIGNMENT; bus->head_align = ALIGNMENT;
bus->sgentry_align = ALIGNMENT; bus->sgentry_align = ALIGNMENT;
if (sdiodev->pdata) { if (sdiodev->pdata) {
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
#ifndef _BRCM_SDH_H_ #ifndef BRCMFMAC_SDIO_H
#define _BRCM_SDH_H_ #define BRCMFMAC_SDIO_H
#include <linux/skbuff.h> #include <linux/skbuff.h>
#include <linux/firmware.h> #include <linux/firmware.h>
...@@ -337,4 +337,4 @@ void brcmf_sdio_isr(struct brcmf_sdio *bus); ...@@ -337,4 +337,4 @@ void brcmf_sdio_isr(struct brcmf_sdio *bus);
void brcmf_sdio_wd_timer(struct brcmf_sdio *bus, uint wdtick); void brcmf_sdio_wd_timer(struct brcmf_sdio *bus, uint wdtick);
void brcmf_sdio_wowl_config(struct device *dev, bool enabled); void brcmf_sdio_wowl_config(struct device *dev, bool enabled);
#endif /* _BRCM_SDH_H_ */ #endif /* BRCMFMAC_SDIO_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment