ALSA: firewire-digi00x: code refactoring for initialization/destruction of AMDTP...
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>
Sun, 4 Aug 2019 06:21:26 +0000 (15:21 +0900)
committerTakashi Iwai <tiwai@suse.de>
Mon, 5 Aug 2019 17:57:20 +0000 (19:57 +0200)
This commit is a preparation to support AMDTP domain.

Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/firewire/digi00x/digi00x-stream.c

index 3e77dbd3ee2281793d9deb9806f11d305e100644..cff193f00a976541c354dcd8709eda5c98ead206 100644 (file)
@@ -218,43 +218,62 @@ static int keep_resources(struct snd_dg00x *dg00x, struct amdtp_stream *stream,
                                fw_parent_device(dg00x->unit)->max_speed);
 }
 
-int snd_dg00x_stream_init_duplex(struct snd_dg00x *dg00x)
+static int init_stream(struct snd_dg00x *dg00x, struct amdtp_stream *s)
 {
+       struct fw_iso_resources *resources;
+       enum amdtp_stream_direction dir;
        int err;
 
-       /* For out-stream. */
-       err = fw_iso_resources_init(&dg00x->rx_resources, dg00x->unit);
+       if (s == &dg00x->tx_stream) {
+               resources = &dg00x->tx_resources;
+               dir = AMDTP_IN_STREAM;
+       } else {
+               resources = &dg00x->rx_resources;
+               dir = AMDTP_OUT_STREAM;
+       }
+
+       err = fw_iso_resources_init(resources, dg00x->unit);
        if (err < 0)
-               goto error;
-       err = amdtp_dot_init(&dg00x->rx_stream, dg00x->unit, AMDTP_OUT_STREAM);
+               return err;
+
+       err = amdtp_dot_init(s, dg00x->unit, dir);
        if (err < 0)
-               goto error;
+               fw_iso_resources_destroy(resources);
+
+       return err;
+}
 
-       /* For in-stream. */
-       err = fw_iso_resources_init(&dg00x->tx_resources, dg00x->unit);
+static void destroy_stream(struct snd_dg00x *dg00x, struct amdtp_stream *s)
+{
+       amdtp_stream_destroy(s);
+
+       if (s == &dg00x->tx_stream)
+               fw_iso_resources_destroy(&dg00x->tx_resources);
+       else
+               fw_iso_resources_destroy(&dg00x->rx_resources);
+}
+
+int snd_dg00x_stream_init_duplex(struct snd_dg00x *dg00x)
+{
+       int err;
+
+       err = init_stream(dg00x, &dg00x->rx_stream);
        if (err < 0)
-               goto error;
-       err = amdtp_dot_init(&dg00x->tx_stream, dg00x->unit, AMDTP_IN_STREAM);
+               return err;
+
+       err = init_stream(dg00x, &dg00x->tx_stream);
        if (err < 0)
-               goto error;
+               destroy_stream(dg00x, &dg00x->rx_stream);
 
-       return 0;
-error:
-       snd_dg00x_stream_destroy_duplex(dg00x);
        return err;
 }
 
-/*
- * This function should be called before starting streams or after stopping
- * streams.
- */
+// This function should be called before starting streams or after stopping
+// streams.
 void snd_dg00x_stream_destroy_duplex(struct snd_dg00x *dg00x)
 {
-       amdtp_stream_destroy(&dg00x->rx_stream);
-       fw_iso_resources_destroy(&dg00x->rx_resources);
-
-       amdtp_stream_destroy(&dg00x->tx_stream);
-       fw_iso_resources_destroy(&dg00x->tx_resources);
+       destroy_stream(dg00x, &dg00x->rx_stream);
+       destroy_stream(dg00x, &dg00x->tx_stream);
 }
 
 int snd_dg00x_stream_reserve_duplex(struct snd_dg00x *dg00x, unsigned int rate)