lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1403139121-2431-2-git-send-email-fjodor.schelichow@hotmail.com> Date: Thu, 19 Jun 2014 02:51:59 +0200 From: Fjodor Schelichow <fjodor.schelichow@...mail.com> To: unlisted-recipients:; (no To-header on input) Cc: Evgeniy Polyakov <zbr@...emap.net>, Greg Kroah-Hartman <gregkh@...uxfoundation.org>, David Fries <David@...es.net>, Michael Opdenacker <michael.opdenacker@...e-electrons.com>, Jingoo Han <jg1.han@...sung.com>, linux-kernel@...r.kernel.org, Roman Sommer <romsom2@...oo.de>, linux-kernel@...cs.fau.de, Fjodor Schelichow <fjodor.schelichow@...mail.com> Subject: [PATCH 1/3] w1/slaves: use pr_* instead of printk This patch replaces all calls to the "printk" function within the "slaves" subdirectory by calls to the appropriate "pr_*" function thus addressing the following warning generated by the checkpatch script: WARNING: Prefer [subsystem eg: netdev]_err([subsystem]dev, ... then dev_err(dev, ... then pr_err(... to printk(KERN_ERR ... Signed-off-by: Fjodor Schelichow <fjodor.schelichow@...mail.com> Signed-off-by: Roman Sommer <romsom2@...oo.de> --- drivers/w1/slaves/w1_ds2760.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/w1/slaves/w1_ds2760.c b/drivers/w1/slaves/w1_ds2760.c index 65f90dc..d9079d4 100644 --- a/drivers/w1/slaves/w1_ds2760.c +++ b/drivers/w1/slaves/w1_ds2760.c @@ -181,8 +181,7 @@ static struct w1_family w1_ds2760_family = { static int __init w1_ds2760_init(void) { - printk(KERN_INFO "1-Wire driver for the DS2760 battery monitor " - " chip - (c) 2004-2005, Szabolcs Gyurko\n"); + pr_info("1-Wire driver for the DS2760 battery monitor chip - (c) 2004-2005, Szabolcs Gyurko\n"); ida_init(&bat_ida); return w1_register_family(&w1_ds2760_family); } -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists