diff options
author | Pierre Ossman <drzeus@drzeus.cx> | 2009-03-05 18:37:28 (GMT) |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2009-03-24 20:30:00 (GMT) |
commit | 0d6132ba0b006dd2bea9ba0c7b6b2f690cd95c40 (patch) | |
tree | 8678340b0a1a58364f6284b82466a97454639e6f /drivers/mmc/core | |
parent | 1b331e69a2313f6e857890c7c2c40e3e2a74367a (diff) | |
download | linux-fsl-qoriq-0d6132ba0b006dd2bea9ba0c7b6b2f690cd95c40.tar.xz |
sdio: handle cis end marker in link field
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc/core')
-rw-r--r-- | drivers/mmc/core/sdio_cis.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mmc/core/sdio_cis.c b/drivers/mmc/core/sdio_cis.c index 956bd76..6ba93f5 100644 --- a/drivers/mmc/core/sdio_cis.c +++ b/drivers/mmc/core/sdio_cis.c @@ -227,6 +227,10 @@ static int sdio_read_cis(struct mmc_card *card, struct sdio_func *func) if (ret) break; + /* a size of 0xff also means we're done */ + if (tpl_link == 0xff) + break; + this = kmalloc(sizeof(*this) + tpl_link, GFP_KERNEL); if (!this) return -ENOMEM; |