diff options
author | Jean Sacren <sakiwit@gmail.com> | 2014-02-25 22:38:29 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-02-26 15:46:25 -0500 |
commit | 44a6bd865623be7154e495e228abb2a1465fe13e (patch) | |
tree | 7c3c437dfa9ebd2066c18267c84e736d6a13c5e6 /drivers/net/ieee802154 | |
parent | 84a3e72c3a5c2441be46c4afba95fe5af3c370e7 (diff) | |
download | linux-next-44a6bd865623be7154e495e228abb2a1465fe13e.tar.gz |
ieee802154: fix new function declaration
The commit 8fad346f366a7 ("eee802154: add basic support for RF212 to
at86rf230 driver") introduced the new function is_rf212() with some
minor issues in declaration:
1) Fix the function type by changing it to bool as the function
definition returns a boolean value. Additionally both callers of
is_rf212() are expected to return a boolean value.
2) Fix the function specifier by deleting the inline keyword as the
compiler takes care of that.
Signed-off-by: Jean Sacren <sakiwit@gmail.com>
Cc: Phoebe Buckheister <phoebe.buckheister@itwm.fraunhofer.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ieee802154')
-rw-r--r-- | drivers/net/ieee802154/at86rf230.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ieee802154/at86rf230.c b/drivers/net/ieee802154/at86rf230.c index 34bf011584fb..dd9ef5e1c730 100644 --- a/drivers/net/ieee802154/at86rf230.c +++ b/drivers/net/ieee802154/at86rf230.c @@ -57,7 +57,7 @@ struct at86rf230_local { int rssi_base_val; }; -static inline int is_rf212(struct at86rf230_local *local) +static bool is_rf212(struct at86rf230_local *local) { return local->part == 7; } |