[components][drivers][sdio]修复没有注册SDIO中断导致断言的问题
This commit is contained in:
parent
c64689147a
commit
78189dfb6b
|
@ -1171,7 +1171,8 @@ void sdio_irq_wakeup(struct rt_mmcsd_host *host)
|
|||
{
|
||||
if (host->flags & MMCSD_SUP_SDIO_IRQ)
|
||||
host->ops->enable_sdio_irq(host, 0);
|
||||
rt_sem_release(host->sdio_irq_sem);
|
||||
if (host->sdio_irq_sem)
|
||||
rt_sem_release(host->sdio_irq_sem);
|
||||
}
|
||||
|
||||
rt_int32_t sdio_enable_func(struct rt_sdio_function *func)
|
||||
|
|
Loading…
Reference in New Issue