ipacm: send tether_client struct in ioctl to set tether client

Currently address of tether_client structure is passed with
WAN_IOC_SET_TETHER_CLIENT_PIPE ioctl. So IPA driver has not
received proper value of ul_src_pipe_len and tether client
pipe is not set. Pass tether_client var with ioctl to
IPA driver as tether_client is pointer type variable.

Change-Id: I8697dd7a003278e05c27a580529e1421ae3a6448
diff --git a/ipacm/src/IPACM_Lan.cpp b/ipacm/src/IPACM_Lan.cpp
index fff1783..fa6dfb9 100644
--- a/ipacm/src/IPACM_Lan.cpp
+++ b/ipacm/src/IPACM_Lan.cpp
@@ -4719,7 +4719,7 @@
 		}
 	}
 
-	ret = ioctl(fd_wwan_ioctl, WAN_IOC_SET_TETHER_CLIENT_PIPE, &tether_client);
+	ret = ioctl(fd_wwan_ioctl, WAN_IOC_SET_TETHER_CLIENT_PIPE, tether_client);
 	if(ret != 0)
 	{
 		IPACMERR("Failed set tether-client-pipe %p with ret %d\n ", &tether_client, ret);