api: storage: Avoid enumeration for non-configured subsystem
If a subsystem wasn't configured, avoid enumeration. Signed-off-by: Emmanuel Vadot <manu@bidouilliste.com>
This commit is contained in:
parent
0dbc9b591a
commit
5d81c6df32
1 changed files with 5 additions and 1 deletions
|
@ -41,7 +41,7 @@ struct stor_spec {
|
||||||
char *name;
|
char *name;
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct stor_spec specs[ENUM_MAX] = { { 0, 0, 0, 0, "" }, };
|
static struct stor_spec specs[ENUM_MAX] = { { 0, 0, 0, 0, NULL }, };
|
||||||
|
|
||||||
|
|
||||||
void dev_stor_init(void)
|
void dev_stor_init(void)
|
||||||
|
@ -105,6 +105,10 @@ static int dev_stor_get(int type, int first, int *more, struct device_info *di)
|
||||||
|
|
||||||
struct blk_desc *dd;
|
struct blk_desc *dd;
|
||||||
|
|
||||||
|
/* Wasn't configured for this type, return 0 directly */
|
||||||
|
if (specs[type].name == NULL)
|
||||||
|
return 0;
|
||||||
|
|
||||||
if (first) {
|
if (first) {
|
||||||
di->cookie = (void *)blk_get_dev(specs[type].name, 0);
|
di->cookie = (void *)blk_get_dev(specs[type].name, 0);
|
||||||
if (di->cookie == NULL)
|
if (di->cookie == NULL)
|
||||||
|
|
Loading…
Reference in a new issue