SS7 IPA module: Various typo fixes
diff --git a/src/ss7_link_ipa_client.erl b/src/ss7_link_ipa_client.erl
index dd4ac67..c1c4b9d 100644
--- a/src/ss7_link_ipa_client.erl
+++ b/src/ss7_link_ipa_client.erl
@@ -50,14 +50,14 @@
 handle_info({ipa_closed, {_Sock, _Stream}}, LoopDat) ->
 	set_link_state(LoopDat, down),
 	{ok, LoopDat2} = reconnect(LoopDat),
-	{no_reply, LoopDat2}.
+	{noreply, LoopDat2}.
 
 handle_cast(#primitive{subsystem='MTP', gen_name='TRANSFER', spec_name=request,
 		       parameters = #mtp3_msg{service_ind = ?MTP3_SERV_SCCP,
 		       			    payload = Data}}, LoopDat) ->
 	#loop_dat{socket = Socket, ipa_pid = Pid} = LoopDat,
 	Pid ! {ipa_send, Socket, 253, Data},
-	{no_reply, LoopDat}.
+	{noreply, LoopDat}.
 
 reconnect(LoopDat = #loop_dat{link=Link}) ->
 	#sigtran_link{local = Local, remote = Remote} = Link,
@@ -81,4 +81,4 @@
 % Callback that we pass to the ipa_proto, which it will call when it wants to
 % send a primitive up the stack to SCCP
 ipa_tx_to_sccp(_Socket, 253, Data, _Args) ->
-	osmo_ss7:mtp3_rx(#mtp3_msg{service_ind=?MTP3_SERV_SCCP, payload=Data}).
+	ss7_links:mtp3_rx(#mtp3_msg{service_ind=?MTP3_SERV_SCCP, payload=Data}).