Skip to content

Commit

Permalink
[media] finepix: Use current logging styles
Browse files Browse the repository at this point in the history
Add pr_fmt.
Convert usb style logging macros to pr_<level>.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Joe Perches authored and Mauro Carvalho Chehab committed Sep 4, 2011
1 parent bdfe91f commit 70a4299
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions drivers/media/video/gspca/finepix.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#define MODULE_NAME "finepix"

#include "gspca.h"
Expand Down Expand Up @@ -182,7 +184,7 @@ static int sd_start(struct gspca_dev *gspca_dev)
/* Init the device */
ret = command(gspca_dev, 0);
if (ret < 0) {
err("init failed %d", ret);
pr_err("init failed %d\n", ret);
return ret;
}

Expand All @@ -194,14 +196,14 @@ static int sd_start(struct gspca_dev *gspca_dev)
FPIX_MAX_TRANSFER, &len,
FPIX_TIMEOUT);
if (ret < 0) {
err("usb_bulk_msg failed %d", ret);
pr_err("usb_bulk_msg failed %d\n", ret);
return ret;
}

/* Request a frame, but don't read it */
ret = command(gspca_dev, 1);
if (ret < 0) {
err("frame request failed %d", ret);
pr_err("frame request failed %d\n", ret);
return ret;
}

Expand Down

0 comments on commit 70a4299

Please sign in to comment.