This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM4378: U-boot Splash Screen

Part Number: AM4378

I am trying to get the U-boot Splash Screen working with SDK version 06.03.00.106 and I am following the directions listed here. I am getting an error when I try to build U-boot:

board/ti/UTI-board/board.c: In function ‘splash_screen’:
board/ti/UTI-board/board.c:591:39: error: ‘struct mmc’ has no member named ‘block_dev’
err = fat_register_device(&mmc->block_dev,

In the mmc.h file, the block_dev variable delaration in the mmc structure is not defined because it is only defined if CONFIG_BLK is not defined. How am I supposed to access the block_dev variable if CONFIG_BLK is defined?