mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 00:52:01 +00:00
7f133de1fb
As a step in moving slot-gpio functions/structs closer to the MMC core, let's add a local header file for slot-gpio. In this initial step we move mmc_gpio_alloc() into the header file, to make it available for the MMC core. Following patches will show the utilization of it. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
14 lines
266 B
C
14 lines
266 B
C
/*
|
|
* Copyright (C) 2014 Linaro Ltd
|
|
*
|
|
* Author: Ulf Hansson <ulf.hansson@linaro.org>
|
|
*
|
|
* License terms: GNU General Public License (GPL) version 2
|
|
*/
|
|
#ifndef _MMC_CORE_SLOTGPIO_H
|
|
#define _MMC_CORE_SLOTGPIO_H
|
|
|
|
int mmc_gpio_alloc(struct mmc_host *host);
|
|
|
|
#endif
|