Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Hans de Goede and committed by
Ulf Hansson
de98c556 a5f5774c

+7
+7
drivers/mmc/core/sdio_ops.h
··· 12 12 #ifndef _MMC_SDIO_OPS_H 13 13 #define _MMC_SDIO_OPS_H 14 14 15 + #include <linux/mmc/sdio.h> 16 + 15 17 int mmc_send_io_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr); 16 18 int mmc_io_rw_direct(struct mmc_card *card, int write, unsigned fn, 17 19 unsigned addr, u8 in, u8* out); 18 20 int mmc_io_rw_extended(struct mmc_card *card, int write, unsigned fn, 19 21 unsigned addr, int incr_addr, u8 *buf, unsigned blocks, unsigned blksz); 20 22 int sdio_reset(struct mmc_host *host); 23 + 24 + static inline bool mmc_is_io_op(u32 opcode) 25 + { 26 + return opcode == SD_IO_RW_DIRECT || opcode == SD_IO_RW_EXTENDED; 27 + } 21 28 22 29 #endif 23 30