aboutsummaryrefslogtreecommitdiff
path: root/include/common
diff options
context:
space:
mode:
authorSoby Mathew <soby.mathew@arm.com>2018-10-11 12:00:48 +0100
committerGitHub <noreply@github.com>2018-10-11 12:00:48 +0100
commite22a4ae074aa3cef51b4bfcb1be530dc84aa109f (patch)
tree75d9f399ed33d11416b13cd360caf6e5021e311c /include/common
parent8b3345f4a64a194655d39b110f27d8ed7e766b28 (diff)
parentfadd21514bcf5e4884dec12a3da9dfc618b7a015 (diff)
downloadtrusted-firmware-a-e22a4ae074aa3cef51b4bfcb1be530dc84aa109f.tar.gz
Merge pull request #1621 from jts-arm/typos
Various corrections of typos
Diffstat (limited to 'include/common')
-rw-r--r--include/common/debug.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/common/debug.h b/include/common/debug.h
index 8ee55b8828..a14a66e859 100644
--- a/include/common/debug.h
+++ b/include/common/debug.h
@@ -57,18 +57,18 @@
} \
} while (false)
-#if LOG_LEVEL >= LOG_LEVEL_NOTICE
-# define NOTICE(...) tf_log(LOG_MARKER_NOTICE __VA_ARGS__)
-#else
-# define NOTICE(...) no_tf_log(LOG_MARKER_NOTICE __VA_ARGS__)
-#endif
-
#if LOG_LEVEL >= LOG_LEVEL_ERROR
# define ERROR(...) tf_log(LOG_MARKER_ERROR __VA_ARGS__)
#else
# define ERROR(...) no_tf_log(LOG_MARKER_ERROR __VA_ARGS__)
#endif
+#if LOG_LEVEL >= LOG_LEVEL_NOTICE
+# define NOTICE(...) tf_log(LOG_MARKER_NOTICE __VA_ARGS__)
+#else
+# define NOTICE(...) no_tf_log(LOG_MARKER_NOTICE __VA_ARGS__)
+#endif
+
#if LOG_LEVEL >= LOG_LEVEL_WARNING
# define WARN(...) tf_log(LOG_MARKER_WARNING __VA_ARGS__)
#else