ALSA: usb-audio: Follow standard coding style
Avoid if ((err = ...) style and expand to multiple lines instead. No change in the end result, but just the beautification. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
@@ -1824,7 +1824,8 @@ int snd_usb_mixer_apply_create_quirk(struct usb_mixer_interface *mixer)
|
||||
int err = 0;
|
||||
struct snd_info_entry *entry;
|
||||
|
||||
if ((err = snd_usb_soundblaster_remote_init(mixer)) < 0)
|
||||
err = snd_usb_soundblaster_remote_init(mixer);
|
||||
if (err < 0)
|
||||
return err;
|
||||
|
||||
switch (mixer->chip->usb_id) {
|
||||
|
Reference in New Issue
Block a user