diff options
Diffstat (limited to 'net/rfkill')
-rw-r--r-- | net/rfkill/rfkill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rfkill/rfkill.c b/net/rfkill/rfkill.c index c9180c8771c6..69f3a3b4dd61 100644 --- a/net/rfkill/rfkill.c +++ b/net/rfkill/rfkill.c | |||
@@ -666,7 +666,7 @@ static int rfkill_check_duplicity(const struct rfkill *rfkill) | |||
666 | } | 666 | } |
667 | 667 | ||
668 | /* 0: first switch of its kind */ | 668 | /* 0: first switch of its kind */ |
669 | return test_bit(rfkill->type, seen); | 669 | return (test_bit(rfkill->type, seen)) ? 1 : 0; |
670 | } | 670 | } |
671 | 671 | ||
672 | static int rfkill_add_switch(struct rfkill *rfkill) | 672 | static int rfkill_add_switch(struct rfkill *rfkill) |