Commit 0121a982 authored by Pierre Ossman's avatar Pierre Ossman

mmc_test: only bind to supported cards

We can only perform the tests on MMC and SD cards, so avoid binding
to any other type.
Signed-off-by: default avatarPierre Ossman <drzeus@drzeus.cx>
parent eea0f581
/* /*
* linux/drivers/mmc/card/mmc_test.c * linux/drivers/mmc/card/mmc_test.c
* *
* Copyright 2007 Pierre Ossman * Copyright 2007-2008 Pierre Ossman
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
...@@ -858,6 +858,9 @@ static int mmc_test_probe(struct mmc_card *card) ...@@ -858,6 +858,9 @@ static int mmc_test_probe(struct mmc_card *card)
{ {
int ret; int ret;
if ((card->type != MMC_TYPE_MMC) && (card->type != MMC_TYPE_SD))
return -ENODEV;
mutex_init(&mmc_test_lock); mutex_init(&mmc_test_lock);
ret = device_create_file(&card->dev, &dev_attr_test); ret = device_create_file(&card->dev, &dev_attr_test);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment