mirror of https://gitee.com/openkylin/linux.git
USB: qcserial.c: remove dbg() usage
dbg() is a usb-serial specific macro. This patch converts the qcserial.c driver to use dev_dbg() instead to tie into the dynamic debug infrastructure. CC: Thomas Tuttle <ttuttle@chromium.org> CC: Alan Stern <stern@rowland.harvard.edu> CC: Paul Gortmaker <paul.gortmaker@windriver.com> CC: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
00c533fd64
commit
9760b28324
|
@ -116,17 +116,18 @@ static int qcprobe(struct usb_serial *serial, const struct usb_device_id *id)
|
||||||
{
|
{
|
||||||
struct usb_wwan_intf_private *data;
|
struct usb_wwan_intf_private *data;
|
||||||
struct usb_host_interface *intf = serial->interface->cur_altsetting;
|
struct usb_host_interface *intf = serial->interface->cur_altsetting;
|
||||||
|
struct device *dev = &serial->dev->dev;
|
||||||
int retval = -ENODEV;
|
int retval = -ENODEV;
|
||||||
__u8 nintf;
|
__u8 nintf;
|
||||||
__u8 ifnum;
|
__u8 ifnum;
|
||||||
bool is_gobi1k = id->driver_info ? true : false;
|
bool is_gobi1k = id->driver_info ? true : false;
|
||||||
|
|
||||||
dbg("Is Gobi 1000 = %d", is_gobi1k);
|
dev_dbg(dev, "Is Gobi 1000 = %d\n", is_gobi1k);
|
||||||
|
|
||||||
nintf = serial->dev->actconfig->desc.bNumInterfaces;
|
nintf = serial->dev->actconfig->desc.bNumInterfaces;
|
||||||
dbg("Num Interfaces = %d", nintf);
|
dev_dbg(dev, "Num Interfaces = %d\n", nintf);
|
||||||
ifnum = intf->desc.bInterfaceNumber;
|
ifnum = intf->desc.bInterfaceNumber;
|
||||||
dbg("This Interface = %d", ifnum);
|
dev_dbg(dev, "This Interface = %d\n", ifnum);
|
||||||
|
|
||||||
data = kzalloc(sizeof(struct usb_wwan_intf_private),
|
data = kzalloc(sizeof(struct usb_wwan_intf_private),
|
||||||
GFP_KERNEL);
|
GFP_KERNEL);
|
||||||
|
@ -147,7 +148,7 @@ static int qcprobe(struct usb_serial *serial, const struct usb_device_id *id)
|
||||||
if (intf->desc.bNumEndpoints == 2 &&
|
if (intf->desc.bNumEndpoints == 2 &&
|
||||||
usb_endpoint_is_bulk_in(&intf->endpoint[0].desc) &&
|
usb_endpoint_is_bulk_in(&intf->endpoint[0].desc) &&
|
||||||
usb_endpoint_is_bulk_out(&intf->endpoint[1].desc)) {
|
usb_endpoint_is_bulk_out(&intf->endpoint[1].desc)) {
|
||||||
dbg("QDL port found");
|
dev_dbg(dev, "QDL port found\n");
|
||||||
|
|
||||||
if (serial->interface->num_altsetting == 1) {
|
if (serial->interface->num_altsetting == 1) {
|
||||||
retval = 0; /* Success */
|
retval = 0; /* Success */
|
||||||
|
@ -156,7 +157,7 @@ static int qcprobe(struct usb_serial *serial, const struct usb_device_id *id)
|
||||||
|
|
||||||
retval = usb_set_interface(serial->dev, ifnum, 1);
|
retval = usb_set_interface(serial->dev, ifnum, 1);
|
||||||
if (retval < 0) {
|
if (retval < 0) {
|
||||||
dev_err(&serial->dev->dev,
|
dev_err(dev,
|
||||||
"Could not set interface, error %d\n",
|
"Could not set interface, error %d\n",
|
||||||
retval);
|
retval);
|
||||||
retval = -ENODEV;
|
retval = -ENODEV;
|
||||||
|
@ -185,20 +186,20 @@ static int qcprobe(struct usb_serial *serial, const struct usb_device_id *id)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (ifnum == 1 && !is_gobi1k) {
|
if (ifnum == 1 && !is_gobi1k) {
|
||||||
dbg("Gobi 2K+ DM/DIAG interface found");
|
dev_dbg(dev, "Gobi 2K+ DM/DIAG interface found\n");
|
||||||
retval = usb_set_interface(serial->dev, ifnum, 0);
|
retval = usb_set_interface(serial->dev, ifnum, 0);
|
||||||
if (retval < 0) {
|
if (retval < 0) {
|
||||||
dev_err(&serial->dev->dev,
|
dev_err(dev,
|
||||||
"Could not set interface, error %d\n",
|
"Could not set interface, error %d\n",
|
||||||
retval);
|
retval);
|
||||||
retval = -ENODEV;
|
retval = -ENODEV;
|
||||||
kfree(data);
|
kfree(data);
|
||||||
}
|
}
|
||||||
} else if (ifnum == 2) {
|
} else if (ifnum == 2) {
|
||||||
dbg("Modem port found");
|
dev_dbg(dev, "Modem port found\n");
|
||||||
retval = usb_set_interface(serial->dev, ifnum, 0);
|
retval = usb_set_interface(serial->dev, ifnum, 0);
|
||||||
if (retval < 0) {
|
if (retval < 0) {
|
||||||
dev_err(&serial->dev->dev,
|
dev_err(dev,
|
||||||
"Could not set interface, error %d\n",
|
"Could not set interface, error %d\n",
|
||||||
retval);
|
retval);
|
||||||
retval = -ENODEV;
|
retval = -ENODEV;
|
||||||
|
@ -210,10 +211,10 @@ static int qcprobe(struct usb_serial *serial, const struct usb_device_id *id)
|
||||||
* # echo "\$GPS_START" > /dev/ttyUSBx
|
* # echo "\$GPS_START" > /dev/ttyUSBx
|
||||||
* # echo "\$GPS_STOP" > /dev/ttyUSBx
|
* # echo "\$GPS_STOP" > /dev/ttyUSBx
|
||||||
*/
|
*/
|
||||||
dbg("Gobi 2K+ NMEA GPS interface found");
|
dev_dbg(dev, "Gobi 2K+ NMEA GPS interface found\n");
|
||||||
retval = usb_set_interface(serial->dev, ifnum, 0);
|
retval = usb_set_interface(serial->dev, ifnum, 0);
|
||||||
if (retval < 0) {
|
if (retval < 0) {
|
||||||
dev_err(&serial->dev->dev,
|
dev_err(dev,
|
||||||
"Could not set interface, error %d\n",
|
"Could not set interface, error %d\n",
|
||||||
retval);
|
retval);
|
||||||
retval = -ENODEV;
|
retval = -ENODEV;
|
||||||
|
@ -223,8 +224,7 @@ static int qcprobe(struct usb_serial *serial, const struct usb_device_id *id)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
dev_err(&serial->dev->dev,
|
dev_err(dev, "unknown number of interfaces: %d\n", nintf);
|
||||||
"unknown number of interfaces: %d\n", nintf);
|
|
||||||
kfree(data);
|
kfree(data);
|
||||||
retval = -ENODEV;
|
retval = -ENODEV;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue