X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=source%2Fdrv-protocol.c;h=1b300bbeb87331cd9931cea6a4de57610cea71a8;hb=refs%2Fheads%2Fmaster;hp=b7b359d2e8020d1e1cb1788b469c1c989360203c;hpb=126eded091582d9b988d793141d6c428bc38457d;p=sigrok-util.git diff --git a/source/drv-protocol.c b/source/drv-protocol.c index b7b359d..b331b6b 100644 --- a/source/drv-protocol.c +++ b/source/drv-protocol.c @@ -1,7 +1,7 @@ /* - * This file is part of the sigrok project. + * This file is part of the libsigrok project. * - * Copyright (C) ${year} ${author} <${email}> + * Copyright (C) {year} {author} <{email}> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,27 +17,27 @@ * along with this program. If not, see . */ -#include -#include -#include "libsigrok.h" -#include "libsigrok-internal.h" -#include "config.h" +#include #include "protocol.h" -SR_PRIV int ${lib}_receive_data(int fd, int revents, void *cb_data) -{ +SR_PRIV int {lib}_receive_data(int fd, int revents, void *cb_data) +{{ const struct sr_dev_inst *sdi; struct dev_context *devc; - if (!(sdi = cb_data)) + (void)fd; + + sdi = cb_data; + if (!sdi) return TRUE; - if (!(devc = sdi->priv)) + devc = sdi->priv; + if (!devc) return TRUE; - if (revents == G_IO_IN) { + if (revents == G_IO_IN) {{ /* TODO */ - } + }} return TRUE; -} +}}