2011-12-25 20:36:02 +00:00
|
|
|
/*
|
|
|
|
* Generic GPIO card-detect helper header
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MMC_CD_GPIO_H
|
|
|
|
#define MMC_CD_GPIO_H
|
|
|
|
|
|
|
|
struct mmc_host;
|
2012-02-09 21:57:07 +00:00
|
|
|
int mmc_cd_gpio_request(struct mmc_host *host, unsigned int gpio);
|
2011-12-25 20:36:02 +00:00
|
|
|
void mmc_cd_gpio_free(struct mmc_host *host);
|
|
|
|
|
|
|
|
#endif
|