diff options
author | Joe Perches | 2014-06-24 11:20:48 -0700 |
---|---|---|
committer | David S. Miller | 2014-06-25 17:45:43 -0700 |
commit | a69f5edb8ba20c87c5f7c96ec40581f9f51f2910 (patch) | |
tree | 61cf5f07b616790a35527c1dfe746a18304f0f7a /include | |
parent | f6d8cb2eeded7df18b821a321d4cd1cdd1754bf8 (diff) |
mac_pton: Use bool not int return
Use bool instead of int as the return type.
All uses are tested with !.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/kernel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 4c52907a6d8b..a9e2268ecccb 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h @@ -501,7 +501,7 @@ static inline char * __deprecated pack_hex_byte(char *buf, u8 byte) extern int hex_to_bin(char ch); extern int __must_check hex2bin(u8 *dst, const char *src, size_t count); -int mac_pton(const char *s, u8 *mac); +bool mac_pton(const char *s, u8 *mac); /* * General tracing related utility functions - trace_printk(), |