Merge tag 'kbuild-fixes-v4.20-2' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / drivers / mmc / core / sdio_bus.h
CommitLineData
e29a7d73
PO
1/*
2 * linux/drivers/mmc/core/sdio_bus.h
3 *
4 * Copyright 2007 Pierre Ossman
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
10 */
11#ifndef _MMC_CORE_SDIO_BUS_H
12#define _MMC_CORE_SDIO_BUS_H
13
066185d6
UH
14struct mmc_card;
15struct sdio_func;
16
e29a7d73
PO
17struct sdio_func *sdio_alloc_func(struct mmc_card *card);
18int sdio_add_func(struct sdio_func *func);
19void sdio_remove_func(struct sdio_func *func);
20
21int sdio_register_bus(void);
22void sdio_unregister_bus(void);
23
24#endif
25