linux/drivers/mmc/core/sdio_cis.h
<<
>>
Prefs
   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
  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#endif
  23