diff options
author | Simon Glass | 2017-05-17 17:18:04 -0600 |
---|---|---|
committer | Simon Glass | 2017-06-01 06:57:52 -0600 |
commit | d6ffb00a438ef8ba714feb2c72a7ddbdebad2b2e (patch) | |
tree | 0036080d0cc903dcd95ccfda42a1888bd85d1a67 /include/dm.h | |
parent | 9d922450aa9944ecf8c249c892078cda80f40e02 (diff) |
dm: core: Move dev_get_addr() etc. into a separate file
Move this group of address-related functions into a new file. These use
the flat device tree. Future work will provide new versions of these which
can support the live tree.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm.h')
-rw-r--r-- | include/dm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dm.h b/include/dm.h index a179c8a6e38..84f789d8075 100644 --- a/include/dm.h +++ b/include/dm.h @@ -8,6 +8,7 @@ #define _DM_H_ #include <dm/device.h> +#include <dm/fdtaddr.h> #include <dm/platdata.h> #include <dm/uclass.h> |