diff options
author | Alasdair G Kergon <agk@redhat.com> | 2007-07-12 12:27:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-12 18:01:08 -0400 |
commit | 0cd3312434cd1f29bee6bff53bf2790d733ad2a2 (patch) | |
tree | fc833f871f1b4d320ee5ab365a3efb3e03b278db /drivers/md/dm-round-robin.c | |
parent | ac818646d4be79123ad8dc5f1c4da8575d4960f8 (diff) |
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-round-robin.c')
-rw-r--r-- | drivers/md/dm-round-robin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/dm-round-robin.c b/drivers/md/dm-round-robin.c index a348a97b65af..391dfa2ad434 100644 --- a/drivers/md/dm-round-robin.c +++ b/drivers/md/dm-round-robin.c | |||
@@ -205,7 +205,7 @@ static void __exit dm_rr_exit(void) | |||
205 | int r = dm_unregister_path_selector(&rr_ps); | 205 | int r = dm_unregister_path_selector(&rr_ps); |
206 | 206 | ||
207 | if (r < 0) | 207 | if (r < 0) |
208 | DMERR("round-robin: unregister failed %d", r); | 208 | DMERR("unregister failed %d", r); |
209 | } | 209 | } |
210 | 210 | ||
211 | module_init(dm_rr_init); | 211 | module_init(dm_rr_init); |