remove legacy printk() statements

This commit is contained in:
Thomas Schoebel-Theuer 2012-02-01 16:25:50 +01:00 committed by Thomas Schoebel-Theuer
parent 6cdd2415be
commit ff37572045
2 changed files with 4 additions and 4 deletions

View File

@ -1117,13 +1117,13 @@ EXPORT_SYMBOL_GPL(buf_brick_type);
int __init init_mars_buf(void)
{
printk(MARS_INFO "init_buf()\n");
MARS_INF("init_buf()\n");
return buf_register_brick_type();
}
void __exit exit_mars_buf(void)
{
printk(MARS_INFO "exit_buf()\n");
MARS_INF("exit_buf()\n");
buf_unregister_brick_type();
}

View File

@ -364,13 +364,13 @@ EXPORT_SYMBOL_GPL(usebuf_brick_type);
int __init init_mars_usebuf(void)
{
printk(MARS_INFO "init_usebuf()\n");
MARS_INF("init_usebuf()\n");
return usebuf_register_brick_type();
}
void __exit exit_mars_usebuf(void)
{
printk(MARS_INFO "exit_usebuf()\n");
MARS_INF("exit_usebuf()\n");
usebuf_unregister_brick_type();
}