diff options
-rw-r--r-- | sound/core/init.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sound/core/init.c b/sound/core/init.c index af1e407ca27f..0d5520c415d3 100644 --- a/sound/core/init.c +++ b/sound/core/init.c | |||
@@ -637,8 +637,12 @@ int snd_card_register(struct snd_card *card) | |||
637 | #endif | 637 | #endif |
638 | #ifndef CONFIG_SYSFS_DEPRECATED | 638 | #ifndef CONFIG_SYSFS_DEPRECATED |
639 | if (card->card_dev) { | 639 | if (card->card_dev) { |
640 | device_create_file(card->card_dev, &card_id_attrs); | 640 | err = device_create_file(card->card_dev, &card_id_attrs); |
641 | device_create_file(card->card_dev, &card_number_attrs); | 641 | if (err < 0) |
642 | return err; | ||
643 | err = device_create_file(card->card_dev, &card_number_attrs); | ||
644 | if (err < 0) | ||
645 | return err; | ||
642 | } | 646 | } |
643 | #endif | 647 | #endif |
644 | return 0; | 648 | return 0; |