From: Kevin Hilman Date: Thu, 21 Jul 2011 16:58:36 +0000 (-0700) Subject: OMAP: omap_device: replace debug/warning/error prints with dev_* macros X-Git-Tag: v3.2-rc1~90^2~8^2~17^2~7 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49882c99401fa2777157908479169accf039cab7;p=pandora-kernel.git OMAP: omap_device: replace debug/warning/error prints with dev_* macros For consistency in kernel printk output for devices, use dev_dbg(), dev_warn(), dev_err() instead of pr_debug(), pr_warning() and pr_err(), some of which currently use direct access of name from platform_device and others of which use dev_name(). Using the dev_* versions uses the standard device naming from the driver core. Some pr_* prints were not converted with this patch since they are used before the platform_device and struct device are created so neither the dev_* prints or dev_name() is valid. Reported-by: Russell King Reviewed-by: Felipe Balbi Signed-off-by: Kevin Hilman --- Reading git-diff-tree failed