提交 3b36a8fd 编写于 作者: B Benny Halevy 提交者: Greg Kroah-Hartman

usb: fix uninitialized variable warning in keyspan_pda

This fixes the compiler warning.
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 397f519a
......@@ -408,7 +408,7 @@ static int keyspan_pda_get_modem_info(struct usb_serial *serial,
3, /* get pins */
USB_TYPE_VENDOR|USB_RECIP_INTERFACE|USB_DIR_IN,
0, 0, &data, 1, 2000);
if (rc > 0)
if (rc >= 0)
*value = data;
return rc;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册