diff options
author | Alan Jenkins <alan-jenkins@tuffmail.co.uk> | 2009-07-18 22:20:20 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-07-21 20:07:43 +0400 |
commit | e56f0975360369347725c49654ecfe3792710429 (patch) | |
tree | 52845ecc6fca6a66c192f87eb8d3d45b0ddbce18 /include/linux/rfkill.h | |
parent | c66284f2a421f6aebbafd56cb8b90b8e6a9cb2de (diff) | |
download | linux-e56f0975360369347725c49654ecfe3792710429.tar.xz |
rfkill: remove too-strict __must_check
Some drivers don't need the return value of rfkill_set_hw_state(),
so it should not be marked as __must_check.
Signed-off-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/linux/rfkill.h')
-rw-r--r-- | include/linux/rfkill.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/rfkill.h b/include/linux/rfkill.h index 2ce29831feb6..278777fa8a3a 100644 --- a/include/linux/rfkill.h +++ b/include/linux/rfkill.h @@ -224,7 +224,7 @@ void rfkill_destroy(struct rfkill *rfkill); * should be blocked) so that drivers need not keep track of the soft * block state -- which they might not be able to. */ -bool __must_check rfkill_set_hw_state(struct rfkill *rfkill, bool blocked); +bool rfkill_set_hw_state(struct rfkill *rfkill, bool blocked); /** * rfkill_set_sw_state - Set the internal rfkill software block state |