aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/aoe/aoemain.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/block/aoe/aoemain.c')
-rw-r--r--drivers/block/aoe/aoemain.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/block/aoe/aoemain.c b/drivers/block/aoe/aoemain.c
index 13e634db6fd4..a04b7d613299 100644
--- a/drivers/block/aoe/aoemain.c
+++ b/drivers/block/aoe/aoemain.c
@@ -84,11 +84,11 @@ aoe_init(void)
84 goto net_fail; 84 goto net_fail;
85 ret = register_blkdev(AOE_MAJOR, DEVICE_NAME); 85 ret = register_blkdev(AOE_MAJOR, DEVICE_NAME);
86 if (ret < 0) { 86 if (ret < 0) {
87 eprintk("can't register major\n"); 87 printk(KERN_ERR "aoe: can't register major\n");
88 goto blkreg_fail; 88 goto blkreg_fail;
89 } 89 }
90 90
91 iprintk("AoE v%s initialised.\n", VERSION); 91 printk(KERN_INFO "aoe: AoE v%s initialised.\n", VERSION);
92 discover_timer(TINIT); 92 discover_timer(TINIT);
93 return 0; 93 return 0;
94 94
@@ -101,7 +101,7 @@ aoe_init(void)
101 chr_fail: 101 chr_fail:
102 aoedev_exit(); 102 aoedev_exit();
103 103
104 iprintk("initialisation failure.\n"); 104 printk(KERN_INFO "aoe: initialisation failure.\n");
105 return ret; 105 return ret;
106} 106}
107 107