Staging: media: replace pr_* with dev_*

This patch replace pr_err/pr_info with dev_err/dev_infi, when
appropriate device structure is found.

Issues found using the following Coccinelle script. pr_err/dev_err was
substituted with pr_info/dev_info in the later case.

@r exists@
identifier f, s, i;
position p;
@@
f(...,struct s *i,...) {
<+...
when != i == NULL
pr_err@p(...);
...+>
}
@rr@
identifier r.s, s2, fld;
@@

struct s {
	...
	struct s2 *fld;
	...
};

@rrr@
identifier rr.s2, fld2;
@@

struct s2 {
	...
	struct device fld2;
	...
};
@@
identifier r.i, r.s, rr.fld, rrr.fld2;
position r.p;
@@

-pr_err@p
+dev_err
   (
+ &i->fld->fld2,
...)

Signed-off-by: Haneen Mohammed <hamohammed.sa@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Haneen Mohammed 2015-03-18 13:09:50 +03:00 committed by Greg Kroah-Hartman
parent 3d719423da
commit 2c9356d115
2 changed files with 7 additions and 4 deletions

View file

@ -209,7 +209,7 @@ static int ipipeif_hw_setup(struct v4l2_subdev *sd)
/* Combine all the fields to make CFG1 register of IPIPEIF */
tmp = val = get_oneshot_mode(ipipeif->input);
if (tmp < 0) {
pr_err("ipipeif: links setup required");
dev_err(&sd->devnode->dev, "ipipeif: links setup required");
return -EINVAL;
}
val <<= ONESHOT_SHIFT;

View file

@ -172,7 +172,8 @@ static void delete_context(struct sasem_context *context)
kfree(context);
if (debug)
pr_info("%s: context deleted\n", __func__);
dev_info(&context->dev->dev, "%s: context deleted\n",
__func__);
}
static void deregister_from_lirc(struct sasem_context *context)
@ -182,10 +183,12 @@ static void deregister_from_lirc(struct sasem_context *context)
retval = lirc_unregister_driver(minor);
if (retval)
pr_err("%s: unable to deregister from lirc (%d)\n",
dev_err(&context->dev->dev,
"%s: unable to deregister from lirc (%d)\n",
__func__, retval);
else
pr_info("Deregistered Sasem driver (minor:%d)\n", minor);
dev_info(&context->dev->dev,
"Deregistered Sasem driver (minor:%d)\n", minor);
}