log: remove unused callbacks
authorLuka Perkov <luka@openwrt.org>
Tue, 21 Apr 2015 17:04:43 +0000 (19:04 +0200)
committerJohn Crispin <blogic@openwrt.org>
Thu, 14 May 2015 04:25:30 +0000 (06:25 +0200)
Signed-off-by: Luka Perkov <luka@openwrt.org>
log/logd.c
log/logread.c

index 8cebeb89fd5c8637dedf5c72ba2669b225e0082c..4a7a746318018973fdf3183e574d46e639754f28 100644 (file)
@@ -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);
index 94b96dba835854f94c4bd74d1e4019de7323c637..625540822160cbd686aaac46e4b690f7464e1682 100644 (file)
@@ -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();