From: Romain Forlot Date: Fri, 7 Jul 2017 15:32:07 +0000 (+0200) Subject: Update struct to follow af-binder changes. X-Git-Tag: 5.0.2~68 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;ds=sidebyside;h=ed898963317613d4aa50a0fd9f7a50e5a4675283;hp=5124dc3dbf5df73529bd79d6457ee19148390e3c;p=apps%2Fagl-service-can-low-level.git Update struct to follow af-binder changes. Added an info fields in struct. Change-Id: I93165911c1ceb62c9893fa1c4635088f0df36b3f Signed-off-by: Romain Forlot --- diff --git a/low-can-binding/binding/low-can-hat.cpp b/low-can-binding/binding/low-can-hat.cpp index fc6f9b5d..6709089e 100644 --- a/low-can-binding/binding/low-can-hat.cpp +++ b/low-can-binding/binding/low-can-hat.cpp @@ -34,14 +34,15 @@ extern "C" static const struct afb_verb_v2 verbs[]= { - { .verb= "subscribe", .callback= subscribe, .auth= NULL, .session= AFB_SESSION_NONE}, - { .verb= "unsubscribe", .callback= unsubscribe, .auth= NULL, .session= AFB_SESSION_NONE}, - { .verb= NULL, .callback= NULL, .auth= NULL, .session= 0} + { .verb= "subscribe", .callback= subscribe, .auth= NULL, .info="Let subscribe to signals", .session= AFB_SESSION_NONE}, + { .verb= "unsubscribe", .callback= unsubscribe, .auth= NULL, .info="Let unsubscribe signals", .session= AFB_SESSION_NONE}, + { .verb= NULL, .callback= NULL, .auth= NULL, .info=NULL, .session= 0} }; const struct afb_binding_v2 afbBindingV2 { .api = "low-can", .specification = NULL, + .info = "API to Low level CAN service, read and decode the bus", .verbs = verbs, .preinit = NULL, .init = initv2,