unsigned int val;
 
        get_rtc_time(&time);
-       printk("Time: %2d:%02d:%02d  Date: %02d/%02d/%02d\n",
+       pr_info("Time: %2d:%02d:%02d  Date: %02d/%02d/%02d\n",
                time.tm_hour, time.tm_min, time.tm_sec,
                time.tm_mon + 1, time.tm_mday, time.tm_year % 100);
        val = time.tm_year;                             /* 100 years */
                unsigned int hash = hash_string(lineno, file, FILEHASH);
                if (hash != value)
                        continue;
-               printk("  hash matches %s:%u\n", file, lineno);
+               pr_info("  hash matches %s:%u\n", file, lineno);
                match++;
        }
        return match;
        val = val / FILEHASH;
        dev = val /* % DEVHASH */;
 
-       printk("  Magic number: %d:%d:%d\n", user, file, dev);
+       pr_info("  Magic number: %d:%d:%d\n", user, file, dev);
        show_file_hash(file);
        show_dev_hash(dev);
        return 0;