2019-05-27 06:55:05 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Advanced Linux Sound Architecture
|
2007-10-15 07:50:19 +00:00
|
|
|
* Copyright (c) by Jaroslav Kysela <perex@perex.cz>
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <sound/core.h>
|
|
|
|
|
|
|
|
static int __init alsa_sound_last_init(void)
|
|
|
|
{
|
2019-04-16 16:18:47 +00:00
|
|
|
struct snd_card *card;
|
2005-04-16 22:20:36 +00:00
|
|
|
int idx, ok = 0;
|
|
|
|
|
|
|
|
printk(KERN_INFO "ALSA device list:\n");
|
2019-04-16 16:18:47 +00:00
|
|
|
for (idx = 0; idx < SNDRV_CARDS; idx++) {
|
|
|
|
card = snd_card_ref(idx);
|
|
|
|
if (card) {
|
|
|
|
printk(KERN_INFO " #%i: %s\n", idx, card->longname);
|
|
|
|
snd_card_unref(card);
|
2005-04-16 22:20:36 +00:00
|
|
|
ok++;
|
|
|
|
}
|
2019-04-16 16:18:47 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
if (ok == 0)
|
|
|
|
printk(KERN_INFO " No soundcards found.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-04-19 07:00:27 +00:00
|
|
|
late_initcall_sync(alsa_sound_last_init);
|