diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2011-12-12 09:26:00 -0700 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-12-12 14:41:45 -0700 |
commit | f88e1ae8acb8affac29034ed79d4fff95ac8c29d (patch) | |
tree | 9cf86d756358df4b48dfd09b8c8820a887077a71 /drivers/of/platform.c | |
parent | dc47ce90c3a822cd7c9e9339fe4d5f61dcb26b50 (diff) | |
download | linux-3.10-f88e1ae8acb8affac29034ed79d4fff95ac8c29d.tar.gz linux-3.10-f88e1ae8acb8affac29034ed79d4fff95ac8c29d.tar.bz2 linux-3.10-f88e1ae8acb8affac29034ed79d4fff95ac8c29d.zip |
dt/device: Fix auxdata matching to handle entries without a name override
There is no requirement to override name entries in auxdata. Fix the
entry matching to use .compatible instead of .name to find the end of the
list.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/of/platform.c')
-rw-r--r-- | drivers/of/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/platform.c b/drivers/of/platform.c index cbd5d701c7e..63b3ec48c20 100644 --- a/drivers/of/platform.c +++ b/drivers/of/platform.c @@ -314,7 +314,7 @@ static const struct of_dev_auxdata *of_dev_lookup(const struct of_dev_auxdata *l if (!lookup) return NULL; - for(; lookup->name != NULL; lookup++) { + for(; lookup->compatible != NULL; lookup++) { if (!of_device_is_compatible(np, lookup->compatible)) continue; if (of_address_to_resource(np, 0, &res)) |