/*1* linux/drivers/mmc/core/sdio_bus.h2*3* Copyright 2007 Pierre Ossman4*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License as published by7* the Free Software Foundation; either version 2 of the License, or (at8* your option) any later version.9*/10#ifndef _MMC_CORE_SDIO_BUS_H11#define _MMC_CORE_SDIO_BUS_H1213struct 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);1617int sdio_register_bus(void);18void sdio_unregister_bus(void);1920#endif21222324