summaryrefslogtreecommitdiff
path: root/drivers/imx/uart/imx_uart.h
diff options
context:
space:
mode:
authorAntonio Niño Díaz <antonio.ninodiaz@arm.com>2018-11-08 12:22:42 +0100
committerGitHub <noreply@github.com>2018-11-08 12:22:42 +0100
commit9d068f66b15e644df4961b74b965323c20f21f14 (patch)
treea10cbb4dba8a33d5a444ed37486f013f19eab635 /drivers/imx/uart/imx_uart.h
parentf5ae1b0e098277a5b02a823a23f61577e53eadf2 (diff)
parentc3cf06f1a3a9b9ee8ac7a0ae505f95c45f7dca84 (diff)
Merge pull request #1673 from antonio-nino-diaz-arm/an/headers
Standardise header guards across codebase
Diffstat (limited to 'drivers/imx/uart/imx_uart.h')
-rw-r--r--drivers/imx/uart/imx_uart.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/imx/uart/imx_uart.h b/drivers/imx/uart/imx_uart.h
index de421256..c3edbc72 100644
--- a/drivers/imx/uart/imx_uart.h
+++ b/drivers/imx/uart/imx_uart.h
@@ -3,8 +3,8 @@
*
* SPDX-License-Identifier: BSD-3-Clause
*/
-#ifndef __IMX_CONSOLE_H__
-#define __IMX_CONSOLE_H__
+#ifndef IMX_UART_H
+#define IMX_UART_H
#define IMX_UART_RXD_OFFSET 0x00
#define IMX_UART_RXD_CHARRDY BIT(15)
@@ -150,4 +150,4 @@
#define IMX_UART_TS_RXFULL BIT(3)
#define IMX_UART_TS_SOFTRST BIT(0)
-#endif /* __IMX_UART_H__ */
+#endif /* IMX_UART_H */