sdio_cis.h 476 B

12345678910111213141516171819202122
  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. #ifndef _MMC_SDIO_CIS_H
  10. #define _MMC_SDIO_CIS_H
  11. struct mmc_card;
  12. struct sdio_func;
  13. int sdio_read_common_cis(struct mmc_card *card);
  14. void sdio_free_common_cis(struct mmc_card *card);
  15. int sdio_read_func_cis(struct sdio_func *func);
  16. void sdio_free_func_cis(struct sdio_func *func);
  17. #endif