@@ -279,7 +279,7 @@ static int sdio_disable_wide(struct mmc_card *card)
return 0;
ctrl &= ~SDIO_BUS_WIDTH_4BIT;
- ctrl |= SDIO_BUS_ASYNC_INT;
+ ctrl |= SDIO_BUS_ECSI;
ret = mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_IF, ctrl, NULL);
if (ret)
@@ -105,8 +105,6 @@
#define SDIO_BUS_ECSI 0x20 /* Enable continuous SPI interrupt */
#define SDIO_BUS_SCSI 0x40 /* Support continuous SPI interrupt */
-#define SDIO_BUS_ASYNC_INT 0x20
-
#define SDIO_BUS_CD_DISABLE 0x80 /* disable pull-up on DAT3 (pin 1) */
#define SDIO_CCCR_CAPS 0x08
SDIO_CCCR_IF[5] should be ECSI rather than ASYNC_INT Signed-off-by: Kevin Liu <kliu5@marvell.com> --- drivers/mmc/core/sdio.c | 2 +- include/linux/mmc/sdio.h | 2 -- 2 files changed, 1 insertions(+), 3 deletions(-)