This patch uses a static name for the sound card's short name and
long name. Having the card names configurable doesn't make sense
anymore, as the card represents the same physical hardware.

Signed-off-by: Christian Gromm <christian.gr...@microchip.com>
---
 drivers/staging/most/sound/sound.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/most/sound/sound.c 
b/drivers/staging/most/sound/sound.c
index 988cc55..bdf870f 100644
--- a/drivers/staging/most/sound/sound.c
+++ b/drivers/staging/most/sound/sound.c
@@ -622,14 +622,14 @@ static int audio_probe_channel(struct most_interface 
*iface, int channel_id,
        adpt->pcm_dev_idx = 0;
        INIT_LIST_HEAD(&adpt->dev_list);
        iface->priv = adpt;
-       ret = snd_card_new(&iface->dev, -1, device_name, THIS_MODULE,
+       ret = snd_card_new(&iface->dev, -1, "INIC", THIS_MODULE,
                           sizeof(*channel), &adpt->card);
        if (ret < 0)
                return ret;
        snprintf(adpt->card->driver, sizeof(adpt->card->driver),
                 "%s", DRIVER_NAME);
        snprintf(adpt->card->shortname, sizeof(adpt->card->shortname),
-                "Microchip MOST:%d", adpt->card->number);
+                "Microchip INIC");
        snprintf(adpt->card->longname, sizeof(adpt->card->longname),
                 "%s at %s, ch %d", adpt->card->shortname, iface->description,
                 channel_id);
-- 
2.7.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to