diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-07-16 18:56:50 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-07-16 18:56:50 -0700 |
commit | b6a2bc4db79faec5b7e61649e88019e4d96ce7f8 (patch) | |
tree | 828e2fdaf8b540589cf8a50454f29524452d6e72 /com32 | |
parent | 553ccf230b4e9e0bc3c152ea7a2c479b6bbdade1 (diff) | |
download | syslinux-b6a2bc4db79faec5b7e61649e88019e4d96ce7f8.tar.gz |
<sys/cpu.h>: drop redundant "return"
Drop "return" for function returning void.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'com32')
-rw-r--r-- | com32/include/sys/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/include/sys/cpu.h b/com32/include/sys/cpu.h index 7a23d514..fcf6ffc6 100644 --- a/com32/include/sys/cpu.h +++ b/com32/include/sys/cpu.h @@ -29,7 +29,7 @@ static inline void cpuid_count(uint32_t op, uint32_t cnt, static inline void cpuid(uint32_t op, uint32_t *eax, uint32_t *ebx, uint32_t *ecx, uint32_t *edx) { - return cpuid_count(op, 0, eax, ebx, ecx, edx); + cpuid_count(op, 0, eax, ebx, ecx, edx); } static inline __constfunc uint32_t cpuid_eax(uint32_t level) { |