i2c: omap: raw read and write endian fix
authorVictor Kamensky <victor.kamensky@linaro.org>
Wed, 27 Nov 2013 13:48:08 +0000 (15:48 +0200)
committerWolfram Sang <wsa@the-dreams.de>
Wed, 27 Nov 2013 18:26:05 +0000 (19:26 +0100)
commit40b13ca8dcac6227109d9df1232787d2ba98052e
treebec78b5dc133025201597dd38059e9c96802cffb
parentc2a3a6198e56a4ddf7cab9a0f98d1ec964292c82
i2c: omap: raw read and write endian fix

All OMAP IP blocks expect LE data, but CPU may operate in BE mode.
Need to use endian neutral functions to read/write h/w registers.
I.e instead of __raw_read[lw] and __raw_write[lw] functions code
need to use read[lw]_relaxed and write[lw]_relaxed functions.
If the first simply reads/writes register, the second will byteswap
it if host operates in BE mode.

Changes are trivial sed like replacement of __raw_xxx functions
with xxx_relaxed variant.

Signed-off-by: Victor Kamensky <victor.kamensky@linaro.org>
Signed-off-by: Taras Kondratiuk <taras.kondratiuk@linaro.org>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/busses/i2c-omap.c