diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-18 20:09:02 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-06-01 07:03:07 -0600 |
commit | b7e0d73bad051b666c6cbf9dff381f4c48dcb8a2 (patch) | |
tree | 9475f7e35d1d9d882da940fcde7c2e4c91270ee0 /include/cros_ec.h | |
parent | bed774969c0ba2ac6999b82953c0a0a708f3ad43 (diff) |
dm: core: Add a place to put extra device-tree reading functions
Some functions deal with structured data rather than simple data types.
It makes sense to have these in their own file. For now this just has a
function to read a flashmap entry. Move the data types also.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/cros_ec.h')
-rw-r--r-- | include/cros_ec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/cros_ec.h b/include/cros_ec.h index 0271f2b827..2bd9f2251f 100644 --- a/include/cros_ec.h +++ b/include/cros_ec.h @@ -14,6 +14,7 @@ #include <fdtdec.h> #include <cros_ec_message.h> #include <asm/gpio.h> +#include <dm/of_extra.h> /* Our configuration information */ struct cros_ec_dev { |