From: Uwe Hermann Date: Mon, 31 Dec 2012 22:31:31 +0000 (+0100) Subject: alsa: Improved error reporting. X-Git-Tag: dsupstream~386 X-Git-Url: http://sigrok.org/gitweb/?a=commitdiff_plain;h=52ba6e05d59d6b2199214aed14330f213e79a593;p=libsigrok.git alsa: Improved error reporting. --- diff --git a/hardware/alsa/api.c b/hardware/alsa/api.c index a757dbba..42f32104 100644 --- a/hardware/alsa/api.c +++ b/hardware/alsa/api.c @@ -276,7 +276,6 @@ static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi, sr_err("Unable to obtain poll descriptors count."); return SR_ERR; } - sr_spew("Obtained poll descriptor count: %d.", count); if (!(devc->ufds = g_try_malloc(count * sizeof(struct pollfd)))) { sr_err("Failed to malloc ufds."); diff --git a/hardware/alsa/protocol.c b/hardware/alsa/protocol.c index 7799d5be..2dfce2d1 100644 --- a/hardware/alsa/protocol.c +++ b/hardware/alsa/protocol.c @@ -121,7 +121,8 @@ static void alsa_scan_handle_dev(GSList **devices, } hwrates[offset++] = 0; - snd_pcm_close(temp_handle); + if ((ret = snd_pcm_close(temp_handle)) < 0) + sr_err("Failed to close device: %s.", snd_strerror(ret)); temp_handle = NULL; /* @@ -177,7 +178,10 @@ scan_error_cleanup: if (hw_params) snd_pcm_hw_params_free(hw_params); if (temp_handle) - snd_pcm_close(temp_handle); + if ((ret = snd_pcm_close(temp_handle)) < 0) { + sr_err("Failed to close device: %s.", + snd_strerror(ret)); + } } /** @@ -211,12 +215,12 @@ SR_PRIV GSList *alsa_scan(GSList *options, struct sr_dev_driver *di) /* TODO */ (void)options; - if (snd_ctl_card_info_malloc(&info) < 0) { - sr_err("Cannot malloc card info."); + if ((ret = snd_ctl_card_info_malloc(&info)) < 0) { + sr_err("Failed to malloc card info: %s.", snd_strerror(ret)); return NULL; } - if (snd_pcm_info_malloc(&pcminfo) < 0) { - sr_err("Cannot malloc pcm info."); + if ((ret = snd_pcm_info_malloc(&pcminfo) < 0)) { + sr_err("Cannot malloc pcm info: %s.", snd_strerror(ret)); return NULL; } @@ -230,7 +234,10 @@ SR_PRIV GSList *alsa_scan(GSList *options, struct sr_dev_driver *di) if ((ret = snd_ctl_card_info(handle, info)) < 0) { sr_err("Cannot get hardware info (%d): %s.", card, snd_strerror(ret)); - snd_ctl_close(handle); + if ((ret = snd_ctl_close(handle)) < 0) { + sr_err("Cannot close device (%d): %s.", + card, snd_strerror(ret)); + } continue; } dev = -1; @@ -246,8 +253,8 @@ SR_PRIV GSList *alsa_scan(GSList *options, struct sr_dev_driver *di) snd_pcm_info_set_stream(pcminfo, SND_PCM_STREAM_CAPTURE); if ((ret = snd_ctl_pcm_info(handle, pcminfo)) < 0) { - sr_err("Cannot get device info: %s.", - snd_strerror(ret)); + sr_err("Cannot get device info (%s): %s.", + hwdev, snd_strerror(ret)); continue; } @@ -260,7 +267,10 @@ SR_PRIV GSList *alsa_scan(GSList *options, struct sr_dev_driver *di) alsa_scan_handle_dev(&devices, cardname, hwdev, di, pcminfo); } - snd_ctl_close(handle); + if ((ret = snd_ctl_close(handle)) < 0) { + sr_err("Cannot close device (%d): %s.", + card, snd_strerror(ret)); + } } snd_pcm_info_free(pcminfo);