summaryrefslogtreecommitdiff
path: root/include/dt-structs.h
diff options
context:
space:
mode:
authorPhilipp Tomsich <philipp.tomsich@theobroma-systems.com>2017-07-11 23:30:07 +0200
committerSimon Glass <sjg@chromium.org>2017-07-28 12:02:47 -0600
commit00b26f7cdb28c2b21eb016f1b52126a428b5022b (patch)
tree267089c89d72724f3509a3feb8c268b2ca099eed /include/dt-structs.h
parentdb13a768a07b31b4955db934f3d55d2c77335bcc (diff)
dm: Fix typo in include-guard for dm-structs.h
The include-guard for dm-structs.h was misspelled as __DT_STTUCTS. Change it. Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dt-structs.h')
-rw-r--r--include/dt-structs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dt-structs.h b/include/dt-structs.h
index e13afa6608..0732c442ff 100644
--- a/include/dt-structs.h
+++ b/include/dt-structs.h
@@ -4,8 +4,8 @@
* SPDX-License-Identifier: GPL-2.0+
*/
-#ifndef __DT_STTUCTS
-#define __DT_STTUCTS
+#ifndef __DT_STRUCTS
+#define __DT_STRUCTS
/* These structures may only be used in SPL */
#if CONFIG_IS_ENABLED(OF_PLATDATA)