Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * linux/drivers/mmc/core/sdio_cis.h
0004  *
0005  * Author:  Nicolas Pitre
0006  * Created: June 11, 2007
0007  * Copyright:   MontaVista Software Inc.
0008  */
0009 
0010 #ifndef _MMC_SDIO_CIS_H
0011 #define _MMC_SDIO_CIS_H
0012 
0013 struct mmc_card;
0014 struct sdio_func;
0015 
0016 int sdio_read_common_cis(struct mmc_card *card);
0017 void sdio_free_common_cis(struct mmc_card *card);
0018 
0019 int sdio_read_func_cis(struct sdio_func *func);
0020 void sdio_free_func_cis(struct sdio_func *func);
0021 
0022 #endif