From patchwork Sun May 10 16:26:54 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Glass X-Patchwork-Id: 245413 List-Id: U-Boot discussion From: sjg at chromium.org (Simon Glass) Date: Sun, 10 May 2020 10:26:54 -0600 Subject: [PATCH v6 2/2] pci: Fix typo in definition for PCI_DEV In-Reply-To: <20200510102651.v6.1.I0fd829dedf499bc0b05be5e4eb590ce829222962@changeid> References: <20200510102651.v6.1.I0fd829dedf499bc0b05be5e4eb590ce829222962@changeid> Message-ID: <20200510102651.v6.2.I5506fd35d4a5472148c0117bf89558b0ed9bf783@changeid> Fix a typo in the comment. Signed-off-by: Simon Glass --- Changes in v6: None include/pci.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pci.h b/include/pci.h index aff56b24f9..19c9244b94 100644 --- a/include/pci.h +++ b/include/pci.h @@ -531,7 +531,7 @@ typedef int pci_dev_t; * This is relevant for the following macros: * PCI_DEV, PCI_FUNC, PCI_DEVFN * The U-Boot macro PCI_DEV is equivalent to the Linux PCI_SLOT version with - * the remark from above (input d in bits 15-8 instead of 7-0. + * the remark from above (input is in bits 15-8 instead of 7-0. */ #define PCI_DEV(d) (((d) >> 11) & 0x1f) #define PCI_FUNC(d) (((d) >> 8) & 0x7)