Commit c8d718f1 authored by Pierre Ossman's avatar Pierre Ossman

sdio: handle null tuples

Signed-off-by: default avatarPierre Ossman <drzeus@drzeus.cx>
parent 0d6132ba
......@@ -223,6 +223,10 @@ static int sdio_read_cis(struct mmc_card *card, struct sdio_func *func)
if (tpl_code == 0xff)
break;
/* null entries have no link field or data */
if (tpl_code == 0x00)
continue;
ret = mmc_io_rw_direct(card, 0, 0, ptr++, 0, &tpl_link);
if (ret)
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment