diff options
author | Sakari Ailus <sakari.ailus@iki.fi> | 2015-01-27 05:26:35 -0500 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2015-02-03 21:32:01 -0500 |
commit | 2d4c0aef0ff4d4374590d6c7b259a259bb2cb21b (patch) | |
tree | 9617944c02ea0a8c432ae6308f6124910e9efbe6 /drivers/of/base.c | |
parent | 851c63e3b381fdbf5aca1a797f37d8606b5588d2 (diff) |
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, | |||
1303 | } | 1303 | } |
1304 | return 0; | 1304 | return 0; |
1305 | } | 1305 | } |
1306 | EXPORT_SYMBOL_GPL(of_property_read_u64_array); | ||
1306 | 1307 | ||
1307 | /** | 1308 | /** |
1308 | * of_property_read_string - Find and read a string from a property | 1309 | * of_property_read_string - Find and read a string from a property |