diff options
Diffstat (limited to 'drivers/mmc/core/sdio_ops.h')
| -rw-r--r-- | drivers/mmc/core/sdio_ops.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/mmc/core/sdio_ops.h b/drivers/mmc/core/sdio_ops.h index bed8a8377fec..ee35cb4d170e 100644 --- a/drivers/mmc/core/sdio_ops.h +++ b/drivers/mmc/core/sdio_ops.h | |||
| @@ -26,9 +26,15 @@ int mmc_io_rw_extended(struct mmc_card *card, int write, unsigned fn, | |||
| 26 | int sdio_reset(struct mmc_host *host); | 26 | int sdio_reset(struct mmc_host *host); |
| 27 | unsigned int mmc_align_data_size(struct mmc_card *card, unsigned int sz); | 27 | unsigned int mmc_align_data_size(struct mmc_card *card, unsigned int sz); |
| 28 | 28 | ||
| 29 | static inline bool mmc_is_io_op(u32 opcode) | 29 | static inline bool sdio_is_io_busy(u32 opcode, u32 arg) |
| 30 | { | 30 | { |
| 31 | return opcode == SD_IO_RW_DIRECT || opcode == SD_IO_RW_EXTENDED; | 31 | u32 addr; |
| 32 | |||
| 33 | addr = (arg >> 9) & 0x1FFFF; | ||
| 34 | |||
| 35 | return (opcode == SD_IO_RW_EXTENDED || | ||
| 36 | (opcode == SD_IO_RW_DIRECT && | ||
| 37 | !(addr == SDIO_CCCR_ABORT || addr == SDIO_CCCR_SUSPEND))); | ||
| 32 | } | 38 | } |
| 33 | 39 | ||
| 34 | #endif | 40 | #endif |
