diff options
author | Max Krummenacher <max.krummenacher@toradex.com> | 2014-04-02 22:19:01 +0200 |
---|---|---|
committer | Max Krummenacher <max.krummenacher@toradex.com> | 2014-04-02 22:19:01 +0200 |
commit | 214db18e6c38454e1c4d22b472dda07db062f976 (patch) | |
tree | 6e103baf7b8a23bc4936fda8ddb36e10b04804cb | |
parent | aedaff053151ac4feba223d46f0d04a303a48eee (diff) |
apalis_imx6.c: don't provide CONFIG_REVISION_TAGApalis_iMX6_LinuxImageV2.2Beta1_20140404
i.MX6 uses the 'standard' board revision for things, i.e.
video decoding no longer works.
so don't interfere with the Apalis iMX6 HW Revision */
-rw-r--r-- | board/toradex/apalis_imx6/apalis_imx6.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/board/toradex/apalis_imx6/apalis_imx6.c b/board/toradex/apalis_imx6/apalis_imx6.c index cccc0de48d4..a870075299b 100644 --- a/board/toradex/apalis_imx6/apalis_imx6.c +++ b/board/toradex/apalis_imx6/apalis_imx6.c @@ -35,7 +35,7 @@ DECLARE_GLOBAL_DATA_PTR; #if defined(CONFIG_BOARD_LATE_INIT) && (defined(CONFIG_TRDX_CFG_BLOCK) || \ - defined(CONFIG_REVISION_TAG) || defined(CONFIG_SERIAL_TAG)) + defined(CONFIG_SERIAL_TAG)) /* buffer suitable for DMA */ #define CONFIG_BLOCK_BUFFER_SIZE 4096 static unsigned char config_block[roundup(CONFIG_BLOCK_BUFFER_SIZE, ARCH_DMA_MINALIGN)] @@ -877,7 +877,10 @@ int board_late_init(void) } #endif /* CONFIG_BOARD_LATE_INIT */ -#ifdef CONFIG_REVISION_TAG +/* i.MX6 uses the 'standard' board revision for things, i.e. + video decoding no longer works. + so don't interfere with the Apalis iMX6 HW Revision */ +#if 0 u32 get_board_rev(void) { #ifdef CONFIG_BOARD_LATE_INIT |