From patchwork Sun Jul 8 20:31:21 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 169669 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 9B0792C0224 for ; Mon, 9 Jul 2012 06:31:39 +1000 (EST) Received: from localhost ([::1]:59857 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sny8m-0004YZ-0y for incoming@patchwork.ozlabs.org; Sun, 08 Jul 2012 16:31:36 -0400 Received: from eggs.gnu.org ([208.118.235.92]:49648) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sny8d-0004XX-Tv for qemu-devel@nongnu.org; Sun, 08 Jul 2012 16:31:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sny8b-0001em-Q9 for qemu-devel@nongnu.org; Sun, 08 Jul 2012 16:31:27 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:41390) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sny8b-0001dI-JG; Sun, 08 Jul 2012 16:31:25 -0400 Received: from localhost (v220110690675601.yourvserver.net.local [127.0.0.1]) by v220110690675601.yourvserver.net (Postfix) with ESMTP id A7B9D72800C0; Sun, 8 Jul 2012 22:31:22 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at weilnetz.de Received: from v220110690675601.yourvserver.net ([127.0.0.1]) by localhost (v220110690675601.yourvserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5jQDASxY3kvF; Sun, 8 Jul 2012 22:31:22 +0200 (CEST) Received: by v220110690675601.yourvserver.net (Postfix, from userid 1000) id 224E872800C1; Sun, 8 Jul 2012 22:31:22 +0200 (CEST) From: Stefan Weil To: qemu-trivial@nongnu.org Date: Sun, 8 Jul 2012 22:31:21 +0200 Message-Id: <1341779481-24690-1-git-send-email-sw@weilnetz.de> X-Mailer: git-send-email 1.7.10 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 78.47.199.172 Cc: Peter Maydell , qemu-devel@nongnu.org, Stefan Weil Subject: [Qemu-devel] [PATCH] bitops: Fix documentation X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Stefan Weil Reviewed-by: Peter Maydell --- bitops.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bitops.h b/bitops.h index b967ef3..c456232 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). *