From: Eldad Zack <eldad@fogrefinery.com>
To: Takashi Iwai <tiwai@suse.de>,
Clemens Ladisch <clemens@ladisch.de>,
Daniel Mack <zonque@gmail.com>
Cc: alsa-devel@alsa-project.org, Eldad Zack <eldad@fogrefinery.com>
Subject: [PATCH v2 10/10] ALSA: usb-audio: remove altset_idx from snd_usb_substream
Date: Wed, 21 Aug 2013 23:38:05 +0200 [thread overview]
Message-ID: <1377121085-20563-11-git-send-email-eldad@fogrefinery.com> (raw)
In-Reply-To: <1377121085-20563-1-git-send-email-eldad@fogrefinery.com>
We only need to check the current altsetting in one place, so there's no
benefit from tracking it.
This patch replaces that one check with get_cur_altset_idx() added in
a previous patch and in the proc substream dump routine.
This allows removing altset_idx from snd_usb_substream.
Signed-off-by: Eldad Zack <eldad@fogrefinery.com>
---
sound/usb/card.h | 1 -
sound/usb/pcm.c | 7 ++-----
sound/usb/pcm.h | 2 ++
sound/usb/proc.c | 4 +++-
4 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/sound/usb/card.h b/sound/usb/card.h
index 4061ee1..0fd3f8b 100644
--- a/sound/usb/card.h
+++ b/sound/usb/card.h
@@ -117,7 +117,6 @@ struct snd_usb_substream {
unsigned int channels_max; /* max channels in the all audiofmts */
unsigned int cur_rate; /* current rate (for hw_params callback) */
unsigned int period_bytes; /* current period bytes (for hw_params callback) */
- unsigned int altset_idx; /* USB data format: index of alternate setting */
unsigned int txfr_quirk:1; /* allow sub-frame alignment */
unsigned int fmt_type; /* USB audio format type (1-3) */
unsigned int pkt_offset_adj; /* Bytes to drop from beginning of packets (for non-compliant devices) */
diff --git a/sound/usb/pcm.c b/sound/usb/pcm.c
index a72f755..8cdc064 100644
--- a/sound/usb/pcm.c
+++ b/sound/usb/pcm.c
@@ -216,7 +216,7 @@ int snd_usb_init_pitch(struct snd_usb_audio *chip, int iface,
}
}
-static int get_cur_altset_idx(struct usb_device *dev, int ifnum)
+int get_cur_altset_idx(struct usb_device *dev, int ifnum)
{
struct usb_interface *iface;
struct usb_interface_descriptor *altsd;
@@ -266,7 +266,6 @@ static int subs_set_interface(struct snd_usb_substream *subs, int ifnum,
return err;
subs->interface = altset_idx == 0 ? -1 : ifnum;
- subs->altset_idx = altset_idx;
return 0;
}
@@ -543,7 +542,7 @@ static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
/* set interface */
if (subs->interface != fmt->iface ||
- subs->altset_idx != fmt->altset_idx) {
+ get_cur_altset_idx(subs->dev, subs->interface) != fmt->altset_idx) {
err = snd_usb_set_interface(subs, fmt->iface, fmt->altsetting);
if (err < 0) {
snd_printk(KERN_ERR "%d:%d:%d: usb_set_interface failed (%d)\n",
@@ -783,7 +782,6 @@ static int snd_usb_hw_params(struct snd_pcm_substream *substream,
return ret;
subs->interface = fmt->iface;
- subs->altset_idx = fmt->altset_idx;
subs->need_setup_ep = true;
return 0;
@@ -1267,7 +1265,6 @@ static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
struct snd_usb_substream *subs = &as->substream[direction];
subs->interface = -1;
- subs->altset_idx = 0;
runtime->hw = snd_usb_hardware;
runtime->private_data = subs;
subs->pcm_substream = substream;
diff --git a/sound/usb/pcm.h b/sound/usb/pcm.h
index df7a003..3270e11 100644
--- a/sound/usb/pcm.h
+++ b/sound/usb/pcm.h
@@ -10,5 +10,7 @@ int snd_usb_init_pitch(struct snd_usb_audio *chip, int iface,
struct usb_host_interface *alts,
struct audioformat *fmt);
+int get_cur_altset_idx(struct usb_device *dev, int ifnum);
+
#endif /* __USBAUDIO_PCM_H */
diff --git a/sound/usb/proc.c b/sound/usb/proc.c
index 5f761ab..44080dd 100644
--- a/sound/usb/proc.c
+++ b/sound/usb/proc.c
@@ -27,6 +27,7 @@
#include "card.h"
#include "endpoint.h"
#include "proc.h"
+#include "pcm.h"
/* convert our full speed USB rate into sampling rate in Hz */
static inline unsigned get_full_speed_hz(unsigned int usb_rate)
@@ -140,7 +141,8 @@ static void proc_dump_substream_status(struct snd_usb_substream *subs, struct sn
if (subs->running) {
snd_iprintf(buffer, " Status: Running\n");
snd_iprintf(buffer, " Interface = %d\n", subs->interface);
- snd_iprintf(buffer, " Altset = %d\n", subs->altset_idx);
+ snd_iprintf(buffer, " Altset = %d\n",
+ get_cur_altset_idx(subs->dev, subs->interface));
proc_dump_ep_status(subs, subs->data_endpoint, subs->sync_endpoint, buffer);
} else {
snd_iprintf(buffer, " Status: Stop\n");
--
1.8.1.5
next prev parent reply other threads:[~2013-08-21 21:39 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-21 21:37 [PATCH v2 00/10] ALSA: usb-audio: fix playback/capture concurrent usage Eldad Zack
2013-08-21 21:37 ` [PATCH v2 01/10] ALSA: usb-audio: remove unused parameter from sync_ep_set_params Eldad Zack
2013-08-21 21:37 ` [PATCH v2 02/10] ALSA: usb-audio: remove deactivate_endpoints() Eldad Zack
2013-08-21 21:37 ` [PATCH v2 03/10] ALSA: usb-audio: prevent NULL dereference on stop trigger Eldad Zack
2013-08-21 21:37 ` [PATCH v2 04/10] ALSA: usb-audio: don't deactivate URBs on in-use EP Eldad Zack
2013-08-21 21:38 ` [PATCH v2 05/10] ALSA: usb-audio: void return type of snd_usb_endpoint_deactivate() Eldad Zack
2013-08-21 21:38 ` [PATCH v2 06/10] ALSA: usb-audio: clear SUBSTREAM_FLAG_SYNC_EP_STARTED on error Eldad Zack
2013-08-21 21:38 ` [PATCH v2 07/10] ALSA: usb-audio: correct ep use_count semantics (add set_param flag) Eldad Zack
2013-08-21 21:38 ` [PATCH v2 08/10] ALSA: usb-audio: conditional interface altsetting Eldad Zack
2013-08-22 7:01 ` Clemens Ladisch
2013-08-22 18:00 ` Eldad Zack
2013-08-21 21:38 ` [PATCH v2 09/10] ALSA: usb-audio: conditional concurrent usage of endpoint Eldad Zack
2013-08-21 21:38 ` Eldad Zack [this message]
2013-08-22 6:11 ` [PATCH v2 00/10] ALSA: usb-audio: fix playback/capture concurrent usage Daniel Mack
2013-08-22 17:43 ` Eldad Zack
2013-08-22 19:36 ` Daniel Mack
2013-08-22 19:44 ` Eldad Zack
2013-08-22 20:48 ` Eldad Zack
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1377121085-20563-11-git-send-email-eldad@fogrefinery.com \
--to=eldad@fogrefinery.com \
--cc=alsa-devel@alsa-project.org \
--cc=clemens@ladisch.de \
--cc=tiwai@suse.de \
--cc=zonque@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox