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

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(-)
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 */

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!
participants (2)
-
Lokesh Vutla
-
Tom Rini