/*1* linux/drivers/mmc/sdio_ops.c2*3* Copyright 2006-2007 Pierre Ossman4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License as published by7* the Free Software Foundation; either version 2 of the License, or (at8* your option) any later version.9*/1011#ifndef _MMC_SDIO_OPS_H12#define _MMC_SDIO_OPS_H1314int mmc_send_io_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr);15int mmc_io_rw_direct(struct mmc_card *card, int write, unsigned fn,16unsigned addr, u8 in, u8* out);17int mmc_io_rw_extended(struct mmc_card *card, int write, unsigned fn,18unsigned addr, int incr_addr, u8 *buf, unsigned blocks, unsigned blksz);19int sdio_reset(struct mmc_host *host);2021#endif22232425