diff options
| author | Blue Swirl <blauwirbel@gmail.com> | 2012-07-14 10:58:22 +0000 |
|---|---|---|
| committer | Blue Swirl <blauwirbel@gmail.com> | 2012-07-14 10:58:22 +0000 |
| commit | 39a4ef1be680d7e60ee3a1cf6ff328dba0326365 (patch) | |
| tree | 4595c3698cdf7b25af89fa343585bf70a4d00982 /bitops.h | |
| parent | 9aa0ff0bf9588f86846d1045662f5d75b91552cb (diff) | |
| parent | 8f67aa8265b7aef104ffab6431048dec8d5656c7 (diff) | |
| download | focaccia-qemu-39a4ef1be680d7e60ee3a1cf6ff328dba0326365.tar.gz focaccia-qemu-39a4ef1be680d7e60ee3a1cf6ff328dba0326365.zip | |
Merge branch 'trivial-patches' of git://github.com/stefanha/qemu
* 'trivial-patches' of git://github.com/stefanha/qemu: make: Remove 'build-all' rule qemu-keymaps: Finnish keyboard mapping broken vnc: add a more descriptive error message bitops: Fix documentation megasas: mark mfi_frame_desc as 'static'
Diffstat (limited to 'bitops.h')
| -rw-r--r-- | bitops.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bitops.h b/bitops.h index b967ef36c5..c45623245f 100644 --- a/bitops.h +++ b/bitops.h @@ -319,8 +319,8 @@ static inline uint64_t extract64(uint64_t value, int start, int length) * @value. Bits of @value outside the bit field are not modified. * Bits of @fieldval above the least significant @length bits are * ignored. The bit field must lie entirely within the 32 bit word. - * It is valid to request that all 64 bits are modified (ie @length - * 64 and @start 0). + * It is valid to request that all 32 bits are modified (ie @length + * 32 and @start 0). * * Returns: the modified @value. */ @@ -334,7 +334,7 @@ static inline uint32_t deposit32(uint32_t value, int start, int length, } /** - * deposit32: + * deposit64: * @value: initial value to insert bit field into * @start: the lowest bit in the bit field (numbered from 0) * @length: the length of the bit field @@ -344,7 +344,7 @@ static inline uint32_t deposit32(uint32_t value, int start, int length, * by the @start and @length parameters, and return the modified * @value. Bits of @value outside the bit field are not modified. * Bits of @fieldval above the least significant @length bits are - * ignored. The bit field must lie entirely within the 32 bit word. + * ignored. The bit field must lie entirely within the 64 bit word. * It is valid to request that all 64 bits are modified (ie @length * 64 and @start 0). * |