diff mbox series

[U-Boot] serial: arm_dcc: Add DCC support for V7R based cores

Message ID 20180816131356.18895-1-lokeshvutla@ti.com
State Accepted
Commit 5f133bb7c519ebb069f74bbda428627ad28419c6
Delegated to: Tom Rini
Headers show
Series [U-Boot] serial: arm_dcc: Add DCC support for V7R based cores | expand

Commit Message

Lokesh Vutla Aug. 16, 2018, 1:13 p.m. UTC
DCC is supported on Cortex R series as well. Enable DCC support
for V7R.

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
---
 drivers/serial/arm_dcc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini Sept. 11, 2018, 12:26 p.m. UTC | #1
On Thu, Aug 16, 2018 at 06:43:56PM +0530, Lokesh Vutla wrote:

> DCC is supported on Cortex R series as well. Enable DCC support
> for V7R.
> 
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/drivers/serial/arm_dcc.c b/drivers/serial/arm_dcc.c
index c83a3fe8ee..43e8691a93 100644
--- a/drivers/serial/arm_dcc.c
+++ b/drivers/serial/arm_dcc.c
@@ -19,7 +19,7 @@ 
 #include <dm.h>
 #include <serial.h>
 
-#if defined(CONFIG_CPU_V6) || defined(CONFIG_CPU_V7A)
+#if defined(CONFIG_CPU_V6) || defined(CONFIG_CPU_V7A) || defined(CONFIG_CPU_V7R)
 /*
  * ARMV6 & ARMV7
  */