From patchwork Fri Apr 21 19:32:41 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bjorn Helgaas X-Patchwork-Id: 9693615 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 16C2D601D4 for ; Fri, 21 Apr 2017 19:32:52 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 04CCC28654 for ; Fri, 21 Apr 2017 19:32:52 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id ED5BD2865C; Fri, 21 Apr 2017 19:32:51 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9A4B028654 for ; Fri, 21 Apr 2017 19:32:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1425262AbdDUTcu (ORCPT ); Fri, 21 Apr 2017 15:32:50 -0400 Received: from mail.kernel.org ([198.145.29.136]:38594 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1425138AbdDUTcu (ORCPT ); Fri, 21 Apr 2017 15:32:50 -0400 Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id E1A9C20219; Fri, 21 Apr 2017 19:32:43 +0000 (UTC) Received: from localhost (unknown [64.22.249.253]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id EA76A2020F; Fri, 21 Apr 2017 19:32:42 +0000 (UTC) Subject: [PATCH 9/9] lspci: Fix "Auxiliary" spelling error From: Bjorn Helgaas To: Martin Mares Cc: linux-pci@vger.kernel.org, Jayachandran C Date: Fri, 21 Apr 2017 14:32:41 -0500 Message-ID: <20170421193241.6562.57167.stgit@bhelgaas-glaptop.roam.corp.google.com> In-Reply-To: <20170421192844.6562.30976.stgit@bhelgaas-glaptop.roam.corp.google.com> References: <20170421192844.6562.30976.stgit@bhelgaas-glaptop.roam.corp.google.com> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 X-Virus-Scanned: ClamAV using ClamSMTP Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Bjorn Helgaas Signed-off-by: Bjorn Helgaas --- lib/pci.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pci.h b/lib/pci.h index 9781acc..052f43b 100644 --- a/lib/pci.h +++ b/lib/pci.h @@ -147,7 +147,7 @@ struct pci_dev { u8 *cache; /* Cached config registers */ int cache_len; int hdrtype; /* Cached low 7 bits of header type, -1 if unknown */ - void *aux; /* Auxillary data */ + void *aux; /* Auxiliary data */ }; #define PCI_ADDR_IO_MASK (~(pciaddr_t) 0x3)