From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45632) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xgr4Q-00024T-1w for qemu-devel@nongnu.org; Wed, 22 Oct 2014 04:15:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xgr4L-0005nk-6P for qemu-devel@nongnu.org; Wed, 22 Oct 2014 04:15:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:12880) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xgr4L-0005ne-06 for qemu-devel@nongnu.org; Wed, 22 Oct 2014 04:14:57 -0400 Date: Wed, 22 Oct 2014 11:18:24 +0300 From: "Michael S. Tsirkin" Message-ID: <1413965859-7698-7-git-send-email-mst@redhat.com> References: <1413965859-7698-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1413965859-7698-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL v2 6/9] pcie: change confused comment clearer List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Gonglei , Anthony Liguori From: Gonglei This comment applies to all functions below it. It is not appropriate that called capability allocation functions, change it into capability list management functions. Signed-off-by: Gonglei Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/pci/pcie.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/pci/pcie.c b/hw/pci/pcie.c index b64a004..58455bd 100644 --- a/hw/pci/pcie.c +++ b/hw/pci/pcie.c @@ -529,7 +529,7 @@ bool pcie_cap_is_arifwd_enabled(const PCIDevice *dev) } /************************************************************************** - * pci express extended capability allocation functions + * pci express extended capability list management functions * uint16_t ext_cap_id (16 bit) * uint8_t cap_ver (4 bit) * uint16_t cap_offset (12 bit) -- MST