Skip to content

Commit de98c55

Browse files
jwrdegoedestorulf
authored andcommitted
mmc: Add mmc_is_io_op helper function
Add a helper function to check if an opcode is a sd-io-rw-* opcode. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
1 parent a5f5774 commit de98c55

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

drivers/mmc/core/sdio_ops.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,19 @@
1212
#ifndef _MMC_SDIO_OPS_H
1313
#define _MMC_SDIO_OPS_H
1414

15+
#include <linux/mmc/sdio.h>
16+
1517
int mmc_send_io_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr);
1618
int mmc_io_rw_direct(struct mmc_card *card, int write, unsigned fn,
1719
unsigned addr, u8 in, u8* out);
1820
int mmc_io_rw_extended(struct mmc_card *card, int write, unsigned fn,
1921
unsigned addr, int incr_addr, u8 *buf, unsigned blocks, unsigned blksz);
2022
int sdio_reset(struct mmc_host *host);
2123

24+
static inline bool mmc_is_io_op(u32 opcode)
25+
{
26+
return opcode == SD_IO_RW_DIRECT || opcode == SD_IO_RW_EXTENDED;
27+
}
28+
2229
#endif
2330

0 commit comments

Comments
 (0)