diff options
author | Kevin Cernekee <cernekee@gmail.com> | 2014-11-12 12:54:00 -0800 |
---|---|---|
committer | Grant Likely <grant.likely@linaro.org> | 2014-11-18 17:32:07 +0000 |
commit | 25c7a1de6c4b9f9eb867af4dc9215bbf9e08ef2e (patch) | |
tree | 6a985b1997166c88b87146a10bc3ffef2cf342ac /drivers/of/base.c | |
parent | a0212ae0be5ba10b6e01b7121f86e391ae1927ae (diff) | |
download | linux-25c7a1de6c4b9f9eb867af4dc9215bbf9e08ef2e.tar.bz2 |
of: Fix of_device_is_compatible() comment
This function passes back a value from __of_device_is_compatible(), which
returns a score in the range 0..11, not a bool.
Signed-off-by: Kevin Cernekee <cernekee@gmail.com>
Signed-off-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'drivers/of/base.c')
-rw-r--r-- | drivers/of/base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/base.c b/drivers/of/base.c index 6137f18d4244..4627e0acf4ad 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c @@ -500,7 +500,7 @@ EXPORT_SYMBOL(of_device_is_compatible); * of_machine_is_compatible - Test root of device tree for a given compatible value * @compat: compatible string to look for in root node's compatible property. * - * Returns true if the root node has the given value in its + * Returns a positive integer if the root node has the given value in its * compatible property. */ int of_machine_is_compatible(const char *compat) |