summaryrefslogtreecommitdiffstats
path: root/drivers/staging/ste_rmi4
diff options
context:
space:
mode:
authorHaneen Mohammed <hamohammed.sa@gmail.com>2015-03-06 22:05:05 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-03-06 15:55:36 -0800
commiteb856202b9f11735237db61c2d4d647825c123e1 (patch)
tree9b73e00a2c73a4d6d838e90668a1abd72d61e99f /drivers/staging/ste_rmi4
parent3daf9df3bab88a14135b5b83713c64d5a58af60d (diff)
downloadlinux-eb856202b9f11735237db61c2d4d647825c123e1.tar.bz2
Staging: slicoss: clean dev_err logging
This patch removes __func__ from dev_err. dev_err includes information about: (devcice, driver, specific instance of device, etc) in the log printout. This was done using Coccinelle, with the following semantic patch: @a@ expression E, R; expression msg; @@ dev_err(E, msg, __func__, R); @script:python b@ e << a.msg; y; @@ if(e.find("%s: ") == True): m = e.replace("%s: ", "", 1); coccinelle.y = m; elif(e.find("%s ") == True): m = e.replace("%s ", "", 1); coccinelle.y = m; elif(e.find("%s:") == True): m = e.replace("%s:", "", 1); coccinelle.y = m; else: m = e.replace("%s", "",1); coccinelle.y = m; @c@ expression a.E, a.msg, a.R; identifier b.y; @@ - dev_err(E, msg, __func__, R); + dev_err(E, y, R); Signed-off-by: Haneen Mohammed <hamohammed.sa@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ste_rmi4')
0 files changed, 0 insertions, 0 deletions