summaryrefslogtreecommitdiffstats
path: root/src/input
diff options
context:
space:
mode:
authorPablo Neira Ayuso2011-07-05 15:29:23 +0200
committerPablo Neira Ayuso2011-07-05 15:29:23 +0200
commitdbd82fb5b1e0fc180a680094b80d6799bd28725a (patch)
tree8c0c3025f38ec51ed1096d33fc033afa3276600e /src/input
parente1_input: change prototype of close hook in e1inp_driver (diff)
downloadlibosmo-abis-dbd82fb5b1e0fc180a680094b80d6799bd28725a.tar.gz
libosmo-abis-dbd82fb5b1e0fc180a680094b80d6799bd28725a.tar.xz
libosmo-abis-dbd82fb5b1e0fc180a680094b80d6799bd28725a.zip
e1_input: change prototype of ->sign_link(...)
This patch removes the struct e1inp_sign_link parameter since this is already available in the msgb->dst field of the message.
Diffstat (limited to 'src/input')
-rw-r--r--src/input/hsl.c2
-rw-r--r--src/input/ipaccess.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/input/hsl.c b/src/input/hsl.c
index aa79cdf..d8eb8db 100644
--- a/src/input/hsl.c
+++ b/src/input/hsl.c
@@ -186,7 +186,7 @@ static int handle_ts1_read(struct osmo_fd *bfd)
"no action set for signalling messages.\n");
return -ENOENT;
}
- e1i_ts->line->ops->sign_link(msg, link);
+ e1i_ts->line->ops->sign_link(msg);
return ret;
}
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index 0192b2b..ec4b231 100644
--- a/src/input/ipaccess.c
+++ b/src/input/ipaccess.c
@@ -386,7 +386,7 @@ static int handle_ts1_read(struct osmo_fd *bfd)
"no action set for signalling messages.\n");
return -ENOENT;
}
- e1i_ts->line->ops->sign_link(msg, link);
+ e1i_ts->line->ops->sign_link(msg);
return ret;
}
@@ -782,7 +782,7 @@ static int ipaccess_bts_cb(struct ipa_client_link *link, struct msgb *msg)
"no action set for signalling messages.\n");
return -ENOENT;
}
- link->line->ops->sign_link(msg, sign_link);
+ link->line->ops->sign_link(msg);
return 0;
}