mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-13 18:34:53 +00:00
ramips: fix BUG_ON on mtk-mmc driver probe
Our .dts files only have one device defined and this is unlikely to change, so statically initialize host->id to 0. Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
f9b2d369a6
commit
6a621f4bd9
@ -2799,9 +2799,7 @@ static int msdc_drv_probe(struct platform_device *pdev)
|
||||
host = mmc_priv(mmc);
|
||||
host->hw = hw;
|
||||
host->mmc = mmc;
|
||||
BUG_ON(pdev->id < -1);
|
||||
BUG_ON(pdev->id >= ARRAY_SIZE(drv_mode));
|
||||
host->id = (pdev->id == -1) ? 0 : pdev->id;
|
||||
host->id = 0;
|
||||
host->error = 0;
|
||||
host->irq = irq;
|
||||
host->base = (unsigned long) base;
|
||||
|
@ -2799,9 +2799,7 @@ static int msdc_drv_probe(struct platform_device *pdev)
|
||||
host = mmc_priv(mmc);
|
||||
host->hw = hw;
|
||||
host->mmc = mmc;
|
||||
BUG_ON(pdev->id < -1);
|
||||
BUG_ON(pdev->id >= ARRAY_SIZE(drv_mode));
|
||||
host->id = (pdev->id == -1) ? 0 : pdev->id;
|
||||
host->id = 0;
|
||||
host->error = 0;
|
||||
host->irq = irq;
|
||||
host->base = (unsigned long) base;
|
||||
|
Loading…
Reference in New Issue
Block a user