diff options
Diffstat (limited to 'sound/isa/cs423x/cs4236_lib.c')
-rw-r--r-- | sound/isa/cs423x/cs4236_lib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/isa/cs423x/cs4236_lib.c b/sound/isa/cs423x/cs4236_lib.c index 33e9cf178b8b..6a85fdc53b60 100644 --- a/sound/isa/cs423x/cs4236_lib.c +++ b/sound/isa/cs423x/cs4236_lib.c | |||
@@ -967,7 +967,8 @@ int snd_cs4236_mixer(struct snd_wss *chip) | |||
967 | int err; | 967 | int err; |
968 | struct snd_kcontrol_new *kcontrol; | 968 | struct snd_kcontrol_new *kcontrol; |
969 | 969 | ||
970 | snd_assert(chip != NULL && chip->card != NULL, return -EINVAL); | 970 | if (snd_BUG_ON(!chip || !chip->card)) |
971 | return -EINVAL; | ||
971 | card = chip->card; | 972 | card = chip->card; |
972 | strcpy(card->mixername, snd_wss_chip_id(chip)); | 973 | strcpy(card->mixername, snd_wss_chip_id(chip)); |
973 | 974 | ||