Commit 1b6d8232 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

USB: mdc800.c: remove dbg() usage

dbg() was a very old USB-specific macro that should no longer
be used. This patch removes it from being used in the driver
and uses dev_dbg() instead.
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 167e4925
...@@ -284,18 +284,16 @@ static void mdc800_usb_irq (struct urb *urb) ...@@ -284,18 +284,16 @@ static void mdc800_usb_irq (struct urb *urb)
int data_received=0, wake_up; int data_received=0, wake_up;
unsigned char* b=urb->transfer_buffer; unsigned char* b=urb->transfer_buffer;
struct mdc800_data* mdc800=urb->context; struct mdc800_data* mdc800=urb->context;
struct device *dev = &mdc800->dev->dev;
int status = urb->status; int status = urb->status;
if (status >= 0) { if (status >= 0) {
//dbg ("%i %i %i %i %i %i %i %i \n",b[0],b[1],b[2],b[3],b[4],b[5],b[6],b[7]);
if (mdc800_isBusy (b)) if (mdc800_isBusy (b))
{ {
if (!mdc800->camera_busy) if (!mdc800->camera_busy)
{ {
mdc800->camera_busy=1; mdc800->camera_busy=1;
dbg ("gets busy"); dev_dbg(dev, "gets busy\n");
} }
} }
else else
...@@ -303,13 +301,13 @@ static void mdc800_usb_irq (struct urb *urb) ...@@ -303,13 +301,13 @@ static void mdc800_usb_irq (struct urb *urb)
if (mdc800->camera_busy && mdc800_isReady (b)) if (mdc800->camera_busy && mdc800_isReady (b))
{ {
mdc800->camera_busy=0; mdc800->camera_busy=0;
dbg ("gets ready"); dev_dbg(dev, "gets ready\n");
} }
} }
if (!(mdc800_isBusy (b) || mdc800_isReady (b))) if (!(mdc800_isBusy (b) || mdc800_isReady (b)))
{ {
/* Store Data in camera_answer field */ /* Store Data in camera_answer field */
dbg ("%i %i %i %i %i %i %i %i ",b[0],b[1],b[2],b[3],b[4],b[5],b[6],b[7]); dev_dbg(dev, "%i %i %i %i %i %i %i %i \n",b[0],b[1],b[2],b[3],b[4],b[5],b[6],b[7]);
memcpy (mdc800->camera_response,b,8); memcpy (mdc800->camera_response,b,8);
data_received=1; data_received=1;
...@@ -441,7 +439,7 @@ static int mdc800_usb_probe (struct usb_interface *intf, ...@@ -441,7 +439,7 @@ static int mdc800_usb_probe (struct usb_interface *intf,
int irq_interval=0; int irq_interval=0;
int retval; int retval;
dbg ("(mdc800_usb_probe) called."); dev_dbg(&intf->dev, "(%s) called.\n", __func__);
if (mdc800->dev != NULL) if (mdc800->dev != NULL)
...@@ -554,7 +552,7 @@ static void mdc800_usb_disconnect (struct usb_interface *intf) ...@@ -554,7 +552,7 @@ static void mdc800_usb_disconnect (struct usb_interface *intf)
{ {
struct mdc800_data* mdc800 = usb_get_intfdata(intf); struct mdc800_data* mdc800 = usb_get_intfdata(intf);
dbg ("(mdc800_usb_disconnect) called"); dev_dbg(&intf->dev, "(%s) called\n", __func__);
if (mdc800) { if (mdc800) {
if (mdc800->state == NOT_CONNECTED) if (mdc800->state == NOT_CONNECTED)
...@@ -656,7 +654,7 @@ static int mdc800_device_open (struct inode* inode, struct file *file) ...@@ -656,7 +654,7 @@ static int mdc800_device_open (struct inode* inode, struct file *file)
} }
mdc800->open=1; mdc800->open=1;
dbg ("Mustek MDC800 device opened."); dev_dbg(&mdc800->dev->dev, "Mustek MDC800 device opened.\n");
error_out: error_out:
mutex_unlock(&mdc800->io_lock); mutex_unlock(&mdc800->io_lock);
...@@ -670,7 +668,6 @@ static int mdc800_device_open (struct inode* inode, struct file *file) ...@@ -670,7 +668,6 @@ static int mdc800_device_open (struct inode* inode, struct file *file)
static int mdc800_device_release (struct inode* inode, struct file *file) static int mdc800_device_release (struct inode* inode, struct file *file)
{ {
int retval=0; int retval=0;
dbg ("Mustek MDC800 device closed.");
mutex_lock(&mdc800->io_lock); mutex_lock(&mdc800->io_lock);
if (mdc800->open && (mdc800->state != NOT_CONNECTED)) if (mdc800->open && (mdc800->state != NOT_CONNECTED))
...@@ -927,7 +924,7 @@ static ssize_t mdc800_device_write (struct file *file, const char __user *buf, s ...@@ -927,7 +924,7 @@ static ssize_t mdc800_device_write (struct file *file, const char __user *buf, s
{ {
mdc800->pic_len=(int) 65536*(unsigned char) mdc800->camera_response[0]+256*(unsigned char) mdc800->camera_response[1]+(unsigned char) mdc800->camera_response[2]; mdc800->pic_len=(int) 65536*(unsigned char) mdc800->camera_response[0]+256*(unsigned char) mdc800->camera_response[1]+(unsigned char) mdc800->camera_response[2];
dbg ("cached imagesize = %i",mdc800->pic_len); dev_dbg(&mdc800->dev->dev, "cached imagesize = %i\n", mdc800->pic_len);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment