mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-26 00:03:57 +00:00
No one is using .init/.cleanup callback function. Let's remove these. sdhi_ops and .cd_wakeup are also removed Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
20 lines
497 B
C
20 lines
497 B
C
#ifndef LINUX_MMC_SH_MOBILE_SDHI_H
|
|
#define LINUX_MMC_SH_MOBILE_SDHI_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
#define SH_MOBILE_SDHI_IRQ_CARD_DETECT "card_detect"
|
|
#define SH_MOBILE_SDHI_IRQ_SDCARD "sdcard"
|
|
#define SH_MOBILE_SDHI_IRQ_SDIO "sdio"
|
|
|
|
struct sh_mobile_sdhi_info {
|
|
int dma_slave_tx;
|
|
int dma_slave_rx;
|
|
unsigned long tmio_flags;
|
|
unsigned long tmio_caps;
|
|
unsigned long tmio_caps2;
|
|
u32 tmio_ocr_mask; /* available MMC voltages */
|
|
unsigned int cd_gpio;
|
|
};
|
|
|
|
#endif /* LINUX_MMC_SH_MOBILE_SDHI_H */
|