23 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * linux/drivers/mmc/core/sdio_cis.h4 *5 * Author: Nicolas Pitre6 * Created: June 11, 20077 * Copyright: MontaVista Software Inc.8 */9 10#ifndef _MMC_SDIO_CIS_H11#define _MMC_SDIO_CIS_H12 13struct mmc_card;14struct sdio_func;15 16int sdio_read_common_cis(struct mmc_card *card);17void sdio_free_common_cis(struct mmc_card *card);18 19int sdio_read_func_cis(struct sdio_func *func);20void sdio_free_func_cis(struct sdio_func *func);21 22#endif23