Hello, Everyone
I want to use UART1 and UART2 in DM6467T, My Linux Kernel is 2.6.32, it is download from TI's website
I found "uart_config" in board-dm646x-evm.c as following:
.enabled_uarts = (1 << 0),
and I modified it to:
.enabled_uarts = ((1 << 0) | (1 << 1) | (1 << 2)),
at the same time, I removed "dm646x_init_cir_device()" in evm_init(in board-dm646x-evm.c).
and then, I unchecked the option of "DaVinci HD CIR driver" in "make xconfig"
I just modified above 3 places, I don't know is there any error, and is there any more places need changing ?
I hope help and suggestions from TI's experts
Thank you very much