mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-04 05:37:36 +00:00
[media] saa6588: use swap() in saa6588_i2c_poll()
Use kernel.h macro definition. Thanks to Julia Lawall for Coccinelle scripting support. Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
2bb00da148
commit
f47c183c20
1 changed files with 1 additions and 3 deletions
|
@ -301,9 +301,7 @@ static void saa6588_i2c_poll(struct saa6588 *s)
|
||||||
first and the last of the 3 bytes block.
|
first and the last of the 3 bytes block.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
tmp = tmpbuf[2];
|
swap(tmpbuf[2], tmpbuf[0]);
|
||||||
tmpbuf[2] = tmpbuf[0];
|
|
||||||
tmpbuf[0] = tmp;
|
|
||||||
|
|
||||||
/* Map 'Invalid block E' to 'Invalid Block' */
|
/* Map 'Invalid block E' to 'Invalid Block' */
|
||||||
if (blocknum == 6)
|
if (blocknum == 6)
|
||||||
|
|
Loading…
Add table
Reference in a new issue