Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2013 Google, Inc | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: GPL-2.0+ | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef _DM_H_ | ||||
Jeroen Hofstee | 4697453 | 2014-06-10 23:52:36 +0200 | [diff] [blame] | 8 | #define _DM_H_ |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 9 | |
Simon Glass | 9a14860 | 2017-05-17 17:18:10 -0600 | [diff] [blame^] | 10 | #include <dm/ofnode.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 11 | #include <dm/device.h> |
Simon Glass | aadfaf0 | 2017-05-17 17:18:04 -0600 | [diff] [blame] | 12 | #include <dm/fdtaddr.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 13 | #include <dm/platdata.h> |
14 | #include <dm/uclass.h> | ||||
15 | |||||
16 | #endif |