diff options
author | Sakari Ailus <sakari.ailus@iki.fi> | 2015-01-27 12:26:35 +0200 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2015-02-03 20:32:01 -0600 |
commit | 2d4c0aef0ff4d4374590d6c7b259a259bb2cb21b (patch) | |
tree | 9617944c02ea0a8c432ae6308f6124910e9efbe6 /drivers/of/base.c | |
parent | 851c63e3b381fdbf5aca1a797f37d8606b5588d2 (diff) | |
download | linux-2d4c0aef0ff4d4374590d6c7b259a259bb2cb21b.tar.bz2 |
of: EXPORT_SYMBOL_GPL of_property_read_u64_array
Make of_property_read_u64_array() available for modules as well. This was
missing from the patch which originally added the function.
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'drivers/of/base.c')
-rw-r--r-- | drivers/of/base.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/of/base.c b/drivers/of/base.c index 36536b6a8834..0a8aeb8523fe 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c @@ -1303,6 +1303,7 @@ int of_property_read_u64_array(const struct device_node *np, } return 0; } +EXPORT_SYMBOL_GPL(of_property_read_u64_array); /** * of_property_read_string - Find and read a string from a property |