]> git.karo-electronics.de Git - karo-tx-linux.git/commit
staging: android: ion: Replace pr_err with dev_err
authorsimran singhal <singhalsimran0@gmail.com>
Mon, 13 Mar 2017 13:56:24 +0000 (19:26 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 13 Mar 2017 22:02:39 +0000 (06:02 +0800)
commitf3e59ec8880575a45035ed226481d708faa41ed2
tree1a3c6192b668a668db4efb280be41bc866bf680f
parent38081c71859efee77c7f3fec07bc4748acb248dc
staging: android: ion: Replace pr_err with dev_err

All devm functions has a device structure as the first argument which is
required by dev_{err,info,dbg} printing functions.
This patch converts pr_err to dev_err as dev_* is preferred after calls
to devm functions.

Done using coccinelle:

@r1 exists@
expression e,e1;
identifier f =~ "^devm_";
identifier g =~ "^pcim_";
identifier h =~ "^dmam_";
@@
e=\(f\|g\|h\)(e1,...);
<+...
(
- pr_info(
+ dev_info(e1,
   ...);
|
- pr_err(
+ dev_err(e1,
  ...);
|
- pr_debug(
+ dev_dbg(e1,
  ...);
)
...+>

Signed-off-by: simran singhal <singhalsimran0@gmail.com>
Acked-by: Laura Abbott <labbott@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ion/ion_test.c