22 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * linux/drivers/mmc/core/sdio_bus.h4 *5 * Copyright 2007 Pierre Ossman6 */7#ifndef _MMC_CORE_SDIO_BUS_H8#define _MMC_CORE_SDIO_BUS_H9 10struct mmc_card;11struct sdio_func;12 13struct sdio_func *sdio_alloc_func(struct mmc_card *card);14int sdio_add_func(struct sdio_func *func);15void sdio_remove_func(struct sdio_func *func);16 17int sdio_register_bus(void);18void sdio_unregister_bus(void);19 20#endif21 22