]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
i2c:mxc fix array size of i2c_data
authorPeng Fan <Peng.Fan@freescale.com>
Tue, 6 Jan 2015 06:12:51 +0000 (14:12 +0800)
committerTom Rini <trini@ti.com>
Thu, 8 Jan 2015 16:00:45 +0000 (11:00 -0500)
commitc36ecf3abfbc20719bbc7229c9a112e2e137a400
tree2332c2a56c6a61b2cb69b6522dfcfae7832fb711
parent5ea019616483bb5103ee57e576e9bc559ea537b5
i2c:mxc fix array size of i2c_data

We should not hardcode array size of i2c_data to 3. To CONFIG_FSL_LSCH3,
there are 4 i2c interface, but not 3. So the size of i2c_data array should
be calculated using "ARRAY_SIZE(i2c_bases)".

To avoid compile error, move i2c_bases before sram_data structure which
contains i2c_data array.

Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
drivers/i2c/mxc_i2c.c