summaryrefslogtreecommitdiff
path: root/log
diff options
context:
space:
mode:
authorLuka Perkov <luka@openwrt.org>2015-04-21 19:04:43 +0200
committerJohn Crispin <blogic@openwrt.org>2015-05-14 06:25:30 +0200
commitec4d07591d630044b54bd950f95a9d378145b3d3 (patch)
tree51e13e1216a15bef7d436c5308dba890ee2f67d5 /log
parent6fbafd7d5b2835d00eb9d1684e7c6ccf907177b8 (diff)
downloadubox-ec4d07591d630044b54bd950f95a9d378145b3d3.tar.gz
log: remove unused callbacks
Signed-off-by: Luka Perkov <luka@openwrt.org>
Diffstat (limited to 'log')
-rw-r--r--log/logd.c6
-rw-r--r--log/logread.c5
2 files changed, 0 insertions, 11 deletions
diff --git a/log/logd.c b/log/logd.c
index 8cebeb8..4a7a746 100644
--- a/log/logd.c
+++ b/log/logd.c
@@ -55,11 +55,6 @@ client_close(struct ustream *s)
free(cl);
}
-static void
-client_notify_write(struct ustream *s, int bytes)
-{
-}
-
static void client_notify_state(struct ustream *s)
{
client_close(s);
@@ -88,7 +83,6 @@ read_log(struct ubus_context *ctx, struct ubus_object *obj,
}
ubus_request_set_fd(ctx, req, fds[0]);
cl = calloc(1, sizeof(*cl));
- cl->s.stream.notify_write = client_notify_write;
cl->s.stream.notify_state = client_notify_state;
cl->fd = fds[1];
ustream_fd_init(&cl->s, cl->fd);
diff --git a/log/logread.c b/log/logread.c
index 94b96db..6255408 100644
--- a/log/logread.c
+++ b/log/logread.c
@@ -223,10 +223,6 @@ static void logread_fd_cb(struct ubus_request *req, int fd)
ustream_fd_init(&test_fd, fd);
}
-static void logread_complete_cb(struct ubus_request *req, int ret)
-{
-}
-
int main(int argc, char **argv)
{
static struct ubus_request req;
@@ -334,7 +330,6 @@ int main(int argc, char **argv)
ubus_invoke_async(ctx, id, "read", b.head, &req);
req.fd_cb = logread_fd_cb;
- req.complete_cb = logread_complete_cb;
ubus_complete_request_async(ctx, &req);
uloop_run();