diff options
author | Ed L. Cashin <ecashin@coraid.com> | 2006-09-20 14:36:51 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-10-18 15:53:51 -0400 |
commit | a12c93f08b8fc83b7fcdabaf92b1adcea7489f5e (patch) | |
tree | 493fb94c32f45b5f1c8109c7ce170f653cb5c3d5 /drivers/block/aoe/aoemain.c | |
parent | 086216db1435f44a58c18454acfa59f013510c95 (diff) |
aoe: revert printk macros
This patch addresses the concern that the aoe driver should
not introduce unecessary conventions that must be learned by
the reader. It reverts patch 6.
Signed-off-by: "Ed L. Cashin" <ecashin@coraid.com>
Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/block/aoe/aoemain.c')
-rw-r--r-- | drivers/block/aoe/aoemain.c | 6 |
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 | ||