brcmfmac: (clean) Rename sdio related files.
Rename sdio_host.h to sdio.h and dhd_sdio.c to sdio.c. Reviewed-by: Arend Van Spriel <arend@broadcom.com> Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com> Signed-off-by: Hante Meuleman <meuleman@broadcom.com> Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
bfe8197582
commit
888bf76e41
|
@ -43,7 +43,7 @@ brcmfmac-$(CONFIG_BRCMFMAC_PROTO_MSGBUF) += \
|
|||
flowring.o \
|
||||
msgbuf.o
|
||||
brcmfmac-$(CONFIG_BRCMFMAC_SDIO) += \
|
||||
dhd_sdio.o \
|
||||
sdio.o \
|
||||
bcmsdh.o
|
||||
brcmfmac-$(CONFIG_BRCMFMAC_USB) += \
|
||||
usb.o
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
#include "chip.h"
|
||||
#include "bus.h"
|
||||
#include "debug.h"
|
||||
#include "sdio_host.h"
|
||||
#include "sdio.h"
|
||||
#include "of.h"
|
||||
|
||||
#define SDIOH_API_ACCESS_RETRY_LIMIT 2
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
#include <defs.h>
|
||||
#include "debug.h"
|
||||
#include "sdio_host.h"
|
||||
#include "sdio.h"
|
||||
|
||||
void brcmf_of_probe(struct brcmf_sdio_dev *sdiodev)
|
||||
{
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
#include <brcmu_utils.h>
|
||||
#include <brcm_hw_ids.h>
|
||||
#include <soc.h>
|
||||
#include "sdio_host.h"
|
||||
#include "sdio.h"
|
||||
#include "chip.h"
|
||||
#include "firmware.h"
|
||||
|
||||
|
@ -4076,7 +4076,7 @@ struct brcmf_sdio *brcmf_sdio_probe(struct brcmf_sdio_dev *sdiodev)
|
|||
|
||||
/* platform specific configuration:
|
||||
* alignments must be at least 4 bytes for ADMA
|
||||
*/
|
||||
*/
|
||||
bus->head_align = ALIGNMENT;
|
||||
bus->sgentry_align = ALIGNMENT;
|
||||
if (sdiodev->pdata) {
|
|
@ -14,8 +14,8 @@
|
|||
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef _BRCM_SDH_H_
|
||||
#define _BRCM_SDH_H_
|
||||
#ifndef BRCMFMAC_SDIO_H
|
||||
#define BRCMFMAC_SDIO_H
|
||||
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/firmware.h>
|
||||
|
@ -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_wowl_config(struct device *dev, bool enabled);
|
||||
|
||||
#endif /* _BRCM_SDH_H_ */
|
||||
#endif /* BRCMFMAC_SDIO_H */
|
Loading…
Reference in New Issue