diff options
author | Pierre Ossman <drzeus@drzeus.cx> | 2008-07-22 14:38:35 +0200 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2008-07-23 14:42:09 +0200 |
commit | 60c9c7b1d91396f511e55a2a5be13d148dcf66ff (patch) | |
tree | 5d544f5c40e2a4c063f7ea2aa28b6f8e0b24115a /drivers/mmc | |
parent | 6d79947a2d34470311012c3ee45ad33650a7f192 (diff) | |
download | op-kernel-dev-60c9c7b1d91396f511e55a2a5be13d148dcf66ff.zip op-kernel-dev-60c9c7b1d91396f511e55a2a5be13d148dcf66ff.tar.gz |
mmc_test: print message when attaching to card
Make it a bit more obvious that the card has been claimed by the
mmc_test driver so that people don't have to wonder why their block
device never shows up.
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/card/mmc_test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mmc/card/mmc_test.c b/drivers/mmc/card/mmc_test.c index 2529601..a067fe4 100644 --- a/drivers/mmc/card/mmc_test.c +++ b/drivers/mmc/card/mmc_test.c @@ -1256,6 +1256,8 @@ static int mmc_test_probe(struct mmc_card *card) if (ret) return ret; + dev_info(&card->dev, "Card claimed for testing.\n"); + return 0; } |