xref: /openbmc/linux/drivers/mmc/core/sdio_cis.h (revision 75bf465f0bc33e9b776a46d6a1b9b990f5fb7c37)
1*2874c5fdSThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */
2b7261261SNicolas Pitre /*
3b7261261SNicolas Pitre  * linux/drivers/mmc/core/sdio_cis.h
4b7261261SNicolas Pitre  *
5b7261261SNicolas Pitre  * Author:	Nicolas Pitre
6b7261261SNicolas Pitre  * Created:	June 11, 2007
7b7261261SNicolas Pitre  * Copyright:	MontaVista Software Inc.
8b7261261SNicolas Pitre  */
9b7261261SNicolas Pitre 
10b7261261SNicolas Pitre #ifndef _MMC_SDIO_CIS_H
11b7261261SNicolas Pitre #define _MMC_SDIO_CIS_H
12b7261261SNicolas Pitre 
13066185d6SUlf Hansson struct mmc_card;
14066185d6SUlf Hansson struct sdio_func;
15066185d6SUlf Hansson 
161a632f8cSPierre Ossman int sdio_read_common_cis(struct mmc_card *card);
171a632f8cSPierre Ossman void sdio_free_common_cis(struct mmc_card *card);
181a632f8cSPierre Ossman 
191a632f8cSPierre Ossman int sdio_read_func_cis(struct sdio_func *func);
201a632f8cSPierre Ossman void sdio_free_func_cis(struct sdio_func *func);
21b7261261SNicolas Pitre 
22b7261261SNicolas Pitre #endif
23