提交 35ae48a3 编写于 作者: C Chris Rorvick 提交者: Takashi Iwai

ALSA: line6: Remove superfluous NULL checks

Signed-off-by: NChris Rorvick <chris@rorvick.com>
Signed-off-by: NTakashi Iwai <tiwai@suse.de>
上级 4d79fb1e
......@@ -456,21 +456,11 @@ int line6_probe(struct usb_interface *interface,
const struct line6_properties *properties,
int (*private_init)(struct usb_interface *, struct usb_line6 *))
{
struct usb_device *usbdev;
struct usb_device *usbdev = interface_to_usbdev(interface);
struct snd_card *card;
int interface_number;
int ret;
if (!interface) {
ret = -ENODEV;
goto err_put;
}
usbdev = interface_to_usbdev(interface);
if (!usbdev) {
ret = -ENODEV;
goto err_put;
}
/* we don't handle multiple configurations */
if (usbdev->descriptor.bNumConfigurations != 1) {
ret = -ENODEV;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册