summaryrefslogtreecommitdiff
path: root/chip/stm32/debug_printf.h
diff options
context:
space:
mode:
Diffstat (limited to 'chip/stm32/debug_printf.h')
-rw-r--r--chip/stm32/debug_printf.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/chip/stm32/debug_printf.h b/chip/stm32/debug_printf.h
index 6091cfc7fc..efd74d40b9 100644
--- a/chip/stm32/debug_printf.h
+++ b/chip/stm32/debug_printf.h
@@ -1,17 +1,17 @@
-/* Copyright 2014 The Chromium OS Authors. All rights reserved.
+/* Copyright 2014 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* Synchronous UART debug printf */
-#ifndef __CROS_EC_DEBUG_H
-#define __CROS_EC_DEBUG_H
+#ifndef __CROS_EC_DEBUG_PRINTF_H
+#define __CROS_EC_DEBUG_PRINTF_H
#ifdef CONFIG_DEBUG_PRINTF
-__attribute__((__format__(__printf__, 1, 2)))
-void debug_printf(const char *format, ...);
+__attribute__((__format__(__printf__, 1, 2))) void
+debug_printf(const char *format, ...);
#else
#define debug_printf(...)
#endif
-#endif /* __CROS_EC_DEBUG_H */
+#endif /* __CROS_EC_DEBUG_PRINTF_H */