ALSA: oxfw: fix regression to handle Stanton SCS.1m/1d

At a commit 6c29230e2a5f ("ALSA: oxfw: delayed registration of sound
card"), ALSA oxfw driver fails to handle SCS.1m/1d, due to -EBUSY at a call
of snd_card_register(). The cause is that the driver manages to register
two rawmidi instances with the same device number 0. This is a regression
introduced since kernel 4.7.

This commit fixes the regression, by fixing up device property after
discovering stream formats.

Fixes: 6c29230e2a5f ("ALSA: oxfw: delayed registration of sound card")
Cc: <stable@vger.kernel.org> # 4.7+
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>

authored by Takashi Sakamoto and committed by Takashi Iwai 3d016d57 2f726aec

+2 -2
+2 -2
sound/firewire/oxfw/oxfw.c
··· 227 227 if (err < 0) 228 228 goto error; 229 229 230 - err = detect_quirks(oxfw); 230 + err = snd_oxfw_stream_discover(oxfw); 231 231 if (err < 0) 232 232 goto error; 233 233 234 - err = snd_oxfw_stream_discover(oxfw); 234 + err = detect_quirks(oxfw); 235 235 if (err < 0) 236 236 goto error; 237 237