Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[PATCH] i2c-sis96x: Remove an init-time log message

This patch removes an init-time kernel log message.
http://marc.theaimsgroup.com/?l=linux-kernel&m=114232987208628&w=3

Signed-off-by: Mark M. Hoffman <mhoffman@lightlink.com>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

Mark M. Hoffman and committed by
Greg Kroah-Hartman
3cb8e1a9 ac987c1f

-8
-8
drivers/i2c/busses/i2c-sis96x.c
··· 43 43 #include <linux/init.h> 44 44 #include <asm/io.h> 45 45 46 - /* 47 - HISTORY: 48 - 2003-05-11 1.0.0 Updated from lm_sensors project for kernel 2.5 49 - (was i2c-sis645.c from lm_sensors 2.7.0) 50 - */ 51 - #define SIS96x_VERSION "1.0.0" 52 - 53 46 /* base address register in PCI config space */ 54 47 #define SIS96x_BAR 0x04 55 48 ··· 330 337 331 338 static int __init i2c_sis96x_init(void) 332 339 { 333 - printk(KERN_INFO "i2c-sis96x version %s\n", SIS96x_VERSION); 334 340 return pci_register_driver(&sis96x_driver); 335 341 } 336 342