mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-16 14:02:10 +00:00
mmc: au1xmmc: implement proper ro switch detection
au1xmmc: implement proper R/O switch detection. Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
This commit is contained in:
parent
62d0cfcb27
commit
82999770d6
@ -152,8 +152,9 @@ static inline int au1xmmc_card_inserted(struct au1xmmc_host *host)
|
|||||||
? 1 : 0;
|
? 1 : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int au1xmmc_card_readonly(struct au1xmmc_host *host)
|
static int au1xmmc_card_readonly(struct mmc_host *mmc)
|
||||||
{
|
{
|
||||||
|
struct au1xmmc_host *host = mmc_priv(mmc);
|
||||||
return (bcsr->status & au1xmmc_card_table[host->id].wpstatus)
|
return (bcsr->status & au1xmmc_card_table[host->id].wpstatus)
|
||||||
? 1 : 0;
|
? 1 : 0;
|
||||||
}
|
}
|
||||||
@ -878,6 +879,7 @@ static void au1xmmc_init_dma(struct au1xmmc_host *host)
|
|||||||
static const struct mmc_host_ops au1xmmc_ops = {
|
static const struct mmc_host_ops au1xmmc_ops = {
|
||||||
.request = au1xmmc_request,
|
.request = au1xmmc_request,
|
||||||
.set_ios = au1xmmc_set_ios,
|
.set_ios = au1xmmc_set_ios,
|
||||||
|
.get_ro = au1xmmc_card_readonly,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __devinit au1xmmc_probe(struct platform_device *pdev)
|
static int __devinit au1xmmc_probe(struct platform_device *pdev)
|
||||||
|
Loading…
Reference in New Issue
Block a user