diff options
author | Alasdair G Kergon <agk@redhat.com> | 2007-07-12 18:27:01 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-13 00:01:08 +0200 |
commit | 0cd3312434cd1f29bee6bff53bf2790d733ad2a2 (patch) | |
tree | fc833f871f1b4d320ee5ab365a3efb3e03b278db /drivers/md/dm-raid1.c | |
parent | dm delay: cleanup (diff) | |
download | linux-0cd3312434cd1f29bee6bff53bf2790d733ad2a2.tar.xz linux-0cd3312434cd1f29bee6bff53bf2790d733ad2a2.zip |
dm: remove duplicate module name from error msgs
Remove explicit module name from messages as the macro now includes it
automatically.
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/md/dm-raid1.c')
-rw-r--r-- | drivers/md/dm-raid1.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/md/dm-raid1.c b/drivers/md/dm-raid1.c index ef124b71ccc8..2a02180f5d05 100644 --- a/drivers/md/dm-raid1.c +++ b/drivers/md/dm-raid1.c @@ -1335,8 +1335,7 @@ static int __init dm_mirror_init(void) r = dm_register_target(&mirror_target); if (r < 0) { - DMERR("%s: Failed to register mirror target", - mirror_target.name); + DMERR("Failed to register mirror target"); dm_dirty_log_exit(); } @@ -1349,7 +1348,7 @@ static void __exit dm_mirror_exit(void) r = dm_unregister_target(&mirror_target); if (r < 0) - DMERR("%s: unregister failed %d", mirror_target.name, r); + DMERR("unregister failed %d", r); dm_dirty_log_exit(); } |