diff options
author | Andre Noll <maan@systemlinux.org> | 2008-07-11 12:02:20 (GMT) |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2008-07-11 12:02:20 (GMT) |
commit | 05710466c9ef2e3ee55166934c801a2393c32f80 (patch) | |
tree | a0560ff7920fcb4de9af3b054dc40033b429701f | |
parent | 0306d5efbf897c7d410fd30b89fc7d97372aa501 (diff) | |
download | linux-fsl-qoriq-05710466c9ef2e3ee55166934c801a2393c32f80.tar.xz |
md: Simplify uuid_equal().
Signed-off-by: Andre Noll <maan@systemlinux.org>
Signed-off-by: Neil Brown <neilb@suse.de>
-rw-r--r-- | drivers/md/md.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 73399d1..8a03c95 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -543,17 +543,12 @@ fail: static int uuid_equal(mdp_super_t *sb1, mdp_super_t *sb2) { - if ( (sb1->set_uuid0 == sb2->set_uuid0) && - (sb1->set_uuid1 == sb2->set_uuid1) && - (sb1->set_uuid2 == sb2->set_uuid2) && - (sb1->set_uuid3 == sb2->set_uuid3)) - - return 1; - - return 0; + return sb1->set_uuid0 == sb2->set_uuid0 && + sb1->set_uuid1 == sb2->set_uuid1 && + sb1->set_uuid2 == sb2->set_uuid2 && + sb1->set_uuid3 == sb2->set_uuid3; } - static int sb_equal(mdp_super_t *sb1, mdp_super_t *sb2) { int ret; |