/*1* linux/drivers/mmc/core/sdio_cis.h2*3* Author: Nicolas Pitre4* Created: June 11, 20075* Copyright: MontaVista Software Inc.6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License as published by9* the Free Software Foundation; either version 2 of the License, or (at10* your option) any later version.11*/1213#ifndef _MMC_SDIO_CIS_H14#define _MMC_SDIO_CIS_H1516int sdio_read_common_cis(struct mmc_card *card);17void sdio_free_common_cis(struct mmc_card *card);1819int sdio_read_func_cis(struct sdio_func *func);20void sdio_free_func_cis(struct sdio_func *func);2122#endif232425