xref: /linux/drivers/mmc/core/sdio_cis.h (revision 44f57d78)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * linux/drivers/mmc/core/sdio_cis.h
4  *
5  * Author:	Nicolas Pitre
6  * Created:	June 11, 2007
7  * Copyright:	MontaVista Software Inc.
8  */
9 
10 #ifndef _MMC_SDIO_CIS_H
11 #define _MMC_SDIO_CIS_H
12 
13 struct mmc_card;
14 struct sdio_func;
15 
16 int sdio_read_common_cis(struct mmc_card *card);
17 void sdio_free_common_cis(struct mmc_card *card);
18 
19 int sdio_read_func_cis(struct sdio_func *func);
20 void sdio_free_func_cis(struct sdio_func *func);
21 
22 #endif
23