diff options
author | Stefan Herbrechtsmeier | 2022-06-14 15:21:30 +0200 |
---|---|---|
committer | Tom Rini | 2022-09-14 15:23:03 -0400 |
commit | b471bdc47b2acabe0b5fcb0fb40a0b1c0602d3b3 (patch) | |
tree | 63a7b1e3e0d0db6be0aaeea90c57a7a0a8a3d7f9 /arch | |
parent | 7a0d88076b9cd8ccc88d41383f92ac2494d4168e (diff) |
dm: core: Add functions to read 8/16-bit integers
Add functions to read 8/16-bit integers like the existing functions for
32/64-bit to simplify read of 8/16-bit integers from device tree
properties.
Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com>
Reviewed-by: Marek Vasut <marex@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sandbox/dts/test.dts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts index 2761588f0da..c7fffa2da27 100644 --- a/arch/sandbox/dts/test.dts +++ b/arch/sandbox/dts/test.dts @@ -233,6 +233,8 @@ test5-gpios = <&gpio_a 19>; bool-value; + int8-value = /bits/ 8 <0x12>; + int16-value = /bits/ 16 <0x1234>; int-value = <1234>; uint-value = <(-1234)>; int64-value = /bits/ 64 <0x1111222233334444>; |