1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Advanced Linux Sound Architecture
4 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
7 #include <linux/init.h>
8 #include <sound/core.h>
10 static int __init alsa_sound_last_init(void)
12 struct snd_card *card;
15 printk(KERN_INFO "ALSA device list:\n");
16 for (idx = 0; idx < SNDRV_CARDS; idx++) {
17 card = snd_card_ref(idx);
19 printk(KERN_INFO " #%i: %s\n", idx, card->longname);
25 printk(KERN_INFO " No soundcards found.\n");
29 late_initcall_sync(alsa_sound_last_init);