dt: add helper function to read u8 & u16 variables & arrays
authorViresh Kumar <viresh.kumar@linaro.org>
Tue, 20 Nov 2012 04:45:19 +0000 (10:15 +0530)
committerRob Herring <rob.herring@calxeda.com>
Wed, 21 Nov 2012 04:58:55 +0000 (22:58 -0600)
commitbe193249b4178158c0f697cb452b2bbf0cb16361
tree4278eba967e625f0cdb6de865a83038243c51e80
parent9846210b1ec9bbaa30022d6d8af7e55ef67ccb45
dt: add helper function to read u8 & u16 variables & arrays

This adds following helper routines:
- of_property_read_u8_array()
- of_property_read_u16_array()
- of_property_read_u8()
- of_property_read_u16()

This expects arrays from DT to be passed as:
- u8 array:
property = /bits/ 8 <0x50 0x60 0x70>;
- u16 array:
property = /bits/ 16 <0x5000 0x6000 0x7000>;

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
drivers/of/base.c
include/linux/of.h