Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a307d1d6 authored by Eddie Kovsky's avatar Eddie Kovsky Committed by Greg Kroah-Hartman
Browse files

staging: vt6655: fix sparse warning: argument type



Fixes following warning generated by sparse:

drivers/staging/vt6655/baseband.c:2180:45: warning: incorrect type in argument 1 (different address spaces)
drivers/staging/vt6655/baseband.c:2180:45:    expected struct vnt_private *priv
drivers/staging/vt6655/baseband.c:2180:45:    got void [noderef] <asn:2>*dwIoBase

Compile tested on next-20141219.

Signed-off-by: default avatarEddie Kovsky <ewk@edkovsky.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3a9dda79
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2177,7 +2177,7 @@ bool BBbVT3253Init(struct vnt_private *priv)
		/* Init ANT B select,RX Config CR10 = 0x28->0x2A, 0x2A->0x28(VC1/VC2 define, make the ANT_A, ANT_B inverted) */
		/*bResult &= BBbWriteEmbedded(dwIoBase,0x0a,0x28);*/
		/* Select VC1/VC2, CR215 = 0x02->0x06 */
		bResult &= BBbWriteEmbedded(dwIoBase, 0xd7, 0x06);
		bResult &= BBbWriteEmbedded(priv, 0xd7, 0x06);
		/* }} */

		for (ii = 0; ii < CB_VT3253B0_AGC; ii++)