Commit 91e065d8 authored by Heinz Mauelshagen's avatar Heinz Mauelshagen Committed by Mike Snitzer

dm unstripe: remove superfluous module init error path message

Signed-off-by: default avatarHeinz Mauelshagen <heinzm@redhat.com>
Reviewed-by: default avatarScott Bauer <Scott.Bauer@intel.com>
Signed-off-by: default avatarMike Snitzer <snitzer@redhat.com>
parent ba5dfbb7
...@@ -195,13 +195,7 @@ static struct target_type unstripe_target = { ...@@ -195,13 +195,7 @@ static struct target_type unstripe_target = {
static int __init dm_unstripe_init(void) static int __init dm_unstripe_init(void)
{ {
int r; return dm_register_target(&unstripe_target);
r = dm_register_target(&unstripe_target);
if (r < 0)
DMERR("target registration failed");
return r;
} }
static void __exit dm_unstripe_exit(void) static void __exit dm_unstripe_exit(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment