aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorPierre Ossman <drzeus@drzeus.cx>2008-07-22 08:38:35 -0400
committerPierre Ossman <drzeus@drzeus.cx>2008-07-23 08:42:09 -0400
commit60c9c7b1d91396f511e55a2a5be13d148dcf66ff (patch)
tree5d544f5c40e2a4c063f7ea2aa28b6f8e0b24115a /drivers
parent6d79947a2d34470311012c3ee45ad33650a7f192 (diff)
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')
-rw-r--r--drivers/mmc/card/mmc_test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mmc/card/mmc_test.c b/drivers/mmc/card/mmc_test.c
index 25296011df59..a067fe436301 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)
1256 if (ret) 1256 if (ret)
1257 return ret; 1257 return ret;
1258 1258
1259 dev_info(&card->dev, "Card claimed for testing.\n");
1260
1259 return 0; 1261 return 0;
1260} 1262}
1261 1263