From: Luis R. Rodriguez Date: Mon, 17 May 2010 19:04:06 +0000 (-0700) Subject: Modify the compat print X-Git-Tag: v2.6.37-rc1-1~56 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=0ca6e663d2bc18d8395bf7fc689c00d785da85a0;p=~emulex%2Ftmp%2Fcompat%2F.git Modify the compat print This uses the COMPAT_VERSION on the print Signed-off-by: Luis R. Rodriguez --- diff --git a/compat/main.c b/compat/main.c index 35a5ae8..1a4ad6d 100644 --- a/compat/main.c +++ b/compat/main.c @@ -17,8 +17,10 @@ static int __init compat_init(void) { /* pm-qos for kernels <= 2.6.24, this is a no-op on newer kernels */ compat_pm_qos_power_init(); + printk(KERN_INFO "Generic kernel compatibility enabled based on " - "linux-next next-20100113\n"); + COMPAT_VERSION + "\n"); return 0; }