From a7486934a8c1f678da0d99c3e4151a67bb3c6cae Mon Sep 17 00:00:00 2001 From: Thierry Bultel Date: Tue, 3 Jul 2018 18:02:56 +0200 Subject: Uses the APIv3 compatibility to vdyn Uses the new compatibility for vdyn based on V3 Signed-off-by: Thierry Bultel --- plugins/alsa/alsa-api-mixer.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'plugins') diff --git a/plugins/alsa/alsa-api-mixer.c b/plugins/alsa/alsa-api-mixer.c index f17e122..e3538f8 100644 --- a/plugins/alsa/alsa-api-mixer.c +++ b/plugins/alsa/alsa-api-mixer.c @@ -634,21 +634,9 @@ OnErrorExit: return; } -STATIC void MixerPingVerb(AFB_ReqT request) { - static int count = 0; - count++; - - AFB_ReqInfo(request, "MixerAttachVerb: Controller:ping count=%d", count); - AFB_ReqSuccess(request, json_object_new_int(count), NULL); - - return; -} - - // Every HAL export the same API & Interface Mapping from SndCard to AudioLogic is done through alsaHalSndCardT STATIC AFB_ApiVerbs CtrlApiVerbs[] = { /* VERB'S NAME FUNCTION TO CALL SHORT DESCRIPTION */ - { .verb = "ping", .callback = MixerPingVerb, .info = "ping count test"}, { .verb = "attach", .callback = MixerAttachVerb, .info = "attach resources to mixer"}, { .verb = "remove", .callback = MixerRemoveVerb, .info = "remove existing mixer streams, zones, ..."}, { .verb = "info", .callback = MixerInfoVerb, .info = "list existing mixer streams, zones, ..."}, -- cgit 1.2.3-korg