X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=common%2Fdevices.c;h=ba53c9bbec4cc1e627749b6f2ce9ad1efe01ab6c;hb=f70fd13e2fe4cf58e251271c27f9c06e141d7f9a;hp=ce3b7a00f904b0e394a2fe6388c21bfd779dd064;hpb=6d0f6bcf337c5261c08fabe12982178c2c489d76;p=u-boot diff --git a/common/devices.c b/common/devices.c index ce3b7a00f9..ba53c9bbec 100644 --- a/common/devices.c +++ b/common/devices.c @@ -215,6 +215,9 @@ int devices_init (void) /* Initialize the list */ INIT_LIST_HEAD(&(devs.list)); +#ifdef CONFIG_ARM_DCC_MULTI + drv_arm_dcc_init (); +#endif #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C) i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); #endif @@ -240,6 +243,9 @@ int devices_init (void) #ifdef CONFIG_NETCONSOLE drv_nc_init (); #endif +#ifdef CONFIG_JTAG_CONSOLE + drv_jtag_console_init (); +#endif return (0); }