summaryrefslogtreecommitdiff
path: root/drivers/mmc/mmc_sysfs.c
diff options
context:
space:
mode:
authorPierre Ossman <drzeus@drzeus.cx>2007-02-10 14:52:23 (GMT)
committerPierre Ossman <drzeus@drzeus.cx>2007-05-01 11:04:16 (GMT)
commit29041dbe199b0dff392bf1b9d634357da0b3208f (patch)
tree57ad87d6e9577f9558a68dca55592d2368b2f545 /drivers/mmc/mmc_sysfs.c
parentf74d132cec60b686bce1f284822c1a496700bd3c (diff)
downloadlinux-29041dbe199b0dff392bf1b9d634357da0b3208f.tar.xz
mmc: Move "present" marking
The "present" state indicates that the card is a registered device, so it is more clear to put it together with the actual registration. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc/mmc_sysfs.c')
-rw-r--r--drivers/mmc/mmc_sysfs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mmc/mmc_sysfs.c b/drivers/mmc/mmc_sysfs.c
index e0e82d8..06f264b 100644
--- a/drivers/mmc/mmc_sysfs.c
+++ b/drivers/mmc/mmc_sysfs.c
@@ -217,6 +217,8 @@ int mmc_register_card(struct mmc_card *card)
device_del(&card->dev);
}
}
+ if (ret == 0)
+ mmc_card_set_present(card);
return ret;
}