Skip to content

Commit

Permalink
mmc: improve error code feedback
Browse files Browse the repository at this point in the history
Now that we use "normal" error codes, improve the reporting and response
to error codes in the core.

Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
  • Loading branch information
Pierre Ossman committed Sep 23, 2007
1 parent 17b0429 commit adf66a0
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 13 deletions.
27 changes: 19 additions & 8 deletions drivers/mmc/core/mmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,13 +176,19 @@ static int mmc_read_ext_csd(struct mmc_card *card)
ext_csd = kmalloc(512, GFP_KERNEL);
if (!ext_csd) {
printk(KERN_ERR "%s: could not allocate a buffer to "
"receive the ext_csd. mmc v4 cards will be "
"treated as v3.\n", mmc_hostname(card->host));
"receive the ext_csd.\n", mmc_hostname(card->host));
return -ENOMEM;
}

err = mmc_send_ext_csd(card, ext_csd);
if (err) {
/*
* We all hosts that cannot perform the command
* to fail more gracefully
*/
if (err != -EINVAL)
goto out;

/*
* High capacity cards should have this "magic" size
* stored in their CSD.
Expand All @@ -199,6 +205,7 @@ static int mmc_read_ext_csd(struct mmc_card *card)
mmc_hostname(card->host));
err = 0;
}

goto out;
}

Expand Down Expand Up @@ -269,17 +276,21 @@ static int mmc_init_card(struct mmc_host *host, u32 ocr,
goto err;

if (oldcard) {
if (memcmp(cid, oldcard->raw_cid, sizeof(cid)) != 0)
if (memcmp(cid, oldcard->raw_cid, sizeof(cid)) != 0) {
err = -ENOENT;
goto err;
}

card = oldcard;
} else {
/*
* Allocate card structure.
*/
card = mmc_alloc_card(host);
if (IS_ERR(card))
if (IS_ERR(card)) {
err = PTR_ERR(card);
goto err;
}

card->type = MMC_TYPE_MMC;
card->rca = 1;
Expand All @@ -304,10 +315,10 @@ static int mmc_init_card(struct mmc_host *host, u32 ocr,
goto free_card;

err = mmc_decode_csd(card);
if (err < 0)
if (err)
goto free_card;
err = mmc_decode_cid(card);
if (err < 0)
if (err)
goto free_card;
}

Expand Down Expand Up @@ -379,7 +390,7 @@ static int mmc_init_card(struct mmc_host *host, u32 ocr,
mmc_remove_card(card);
err:

return -EIO;
return err;
}

/*
Expand Down Expand Up @@ -587,6 +598,6 @@ int mmc_attach_mmc(struct mmc_host *host, u32 ocr)
printk(KERN_ERR "%s: error %d whilst initialising MMC card\n",
mmc_hostname(host), err);

return 0;
return err;
}

22 changes: 17 additions & 5 deletions drivers/mmc/core/sd.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,18 @@ static int mmc_read_switch(struct mmc_card *card)

err = mmc_sd_switch(card, 0, 0, 1, status);
if (err) {
/*
* We all hosts that cannot perform the command
* to fail more gracefully
*/
if (err != -EINVAL)
goto out;

printk(KERN_WARNING "%s: problem reading switch "
"capabilities, performance might suffer.\n",
mmc_hostname(card->host));
err = 0;

goto out;
}

Expand Down Expand Up @@ -324,17 +332,21 @@ static int mmc_sd_init_card(struct mmc_host *host, u32 ocr,
goto err;

if (oldcard) {
if (memcmp(cid, oldcard->raw_cid, sizeof(cid)) != 0)
if (memcmp(cid, oldcard->raw_cid, sizeof(cid)) != 0) {
err = -ENOENT;
goto err;
}

card = oldcard;
} else {
/*
* Allocate card structure.
*/
card = mmc_alloc_card(host);
if (IS_ERR(card))
if (IS_ERR(card)) {
err = PTR_ERR(card);
goto err;
}

card->type = MMC_TYPE_SD;
memcpy(card->raw_cid, cid, sizeof(card->raw_cid));
Expand All @@ -358,7 +370,7 @@ static int mmc_sd_init_card(struct mmc_host *host, u32 ocr,
goto free_card;

err = mmc_decode_csd(card);
if (err < 0)
if (err)
goto free_card;

mmc_decode_cid(card);
Expand Down Expand Up @@ -449,7 +461,7 @@ static int mmc_sd_init_card(struct mmc_host *host, u32 ocr,
mmc_remove_card(card);
err:

return -EIO;
return err;
}

/*
Expand Down Expand Up @@ -666,6 +678,6 @@ int mmc_attach_sd(struct mmc_host *host, u32 ocr)
printk(KERN_ERR "%s: error %d whilst initialising SD card\n",
mmc_hostname(host), err);

return 0;
return err;
}

0 comments on commit adf66a0

Please sign in to comment.