Re: [PATCH] mfd: asic3: Fix the broken MMC card detection

2018-06-04 Thread Lee Jones
On Sat, 26 May 2018, Robert Jarzmik wrote: > The MMC framework requires the ocr_mask to be provided. Without it, the > SD card is not detected, especially on the hx4700 platform. > > Signed-off-by: Robert Jarzmik > --- > drivers/mfd/asic3.c | 3 +++ > 1 file changed, 3 insertions(+) Applied,

Re: [PATCH] mfd: asic3: Fix the broken MMC card detection

2018-06-04 Thread Lee Jones
On Sat, 26 May 2018, Robert Jarzmik wrote: > The MMC framework requires the ocr_mask to be provided. Without it, the > SD card is not detected, especially on the hx4700 platform. > > Signed-off-by: Robert Jarzmik > --- > drivers/mfd/asic3.c | 3 +++ > 1 file changed, 3 insertions(+) Applied,

[PATCH] mfd: asic3: Fix the broken MMC card detection

2018-05-26 Thread Robert Jarzmik
The MMC framework requires the ocr_mask to be provided. Without it, the SD card is not detected, especially on the hx4700 platform. Signed-off-by: Robert Jarzmik --- drivers/mfd/asic3.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/mfd/asic3.c

[PATCH] mfd: asic3: Fix the broken MMC card detection

2018-05-26 Thread Robert Jarzmik
The MMC framework requires the ocr_mask to be provided. Without it, the SD card is not detected, especially on the hx4700 platform. Signed-off-by: Robert Jarzmik --- drivers/mfd/asic3.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/mfd/asic3.c b/drivers/mfd/asic3.c index

Re: MMC card detection

2008-02-25 Thread Pierre Ossman
On Thu, 21 Feb 2008 19:46:20 +0100 Haavard Skinnemoen <[EMAIL PROTECTED]> wrote: > > When the card is reinserted, the MMC core will try to send a > SEND_STATUS command again. This time, the card won't respond because it > is in the "idle" state, and the MMC core will think the card is gone. > >

Re: MMC card detection

2008-02-25 Thread Pierre Ossman
On Thu, 21 Feb 2008 19:46:20 +0100 Haavard Skinnemoen [EMAIL PROTECTED] wrote: When the card is reinserted, the MMC core will try to send a SEND_STATUS command again. This time, the card won't respond because it is in the idle state, and the MMC core will think the card is gone. In order

Re: MMC card detection

2008-02-21 Thread Haavard Skinnemoen
On Thu, 21 Feb 2008 19:46:20 +0100 Haavard Skinnemoen <[EMAIL PROTECTED]> wrote: > In order to fix this problem, I think I need a way to tell the MMC core > that the card really is gone and that there's no point trying to > communicate with it. Is there any way I can do that? Never mind, I

MMC card detection

2008-02-21 Thread Haavard Skinnemoen
Hi Pierre, I've been trying to debug some card detection problems in the atmel-mci driver. Sometimes, when I remove a card, the event doesn't seem to get detected properly, and the MMC core thinks the card is still there. When I re-insert the card, the MMC core thinks the card is gone. I've

MMC card detection

2008-02-21 Thread Haavard Skinnemoen
Hi Pierre, I've been trying to debug some card detection problems in the atmel-mci driver. Sometimes, when I remove a card, the event doesn't seem to get detected properly, and the MMC core thinks the card is still there. When I re-insert the card, the MMC core thinks the card is gone. I've

Re: MMC card detection

2008-02-21 Thread Haavard Skinnemoen
On Thu, 21 Feb 2008 19:46:20 +0100 Haavard Skinnemoen [EMAIL PROTECTED] wrote: In order to fix this problem, I think I need a way to tell the MMC core that the card really is gone and that there's no point trying to communicate with it. Is there any way I can do that? Never mind, I figured it