[PATCH] Fix Vector table and PBA addresses print output

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Lack of 3-bit rotation to the right was leading to erroneous display of the
vector table and PBA.

Signed-off-by: Gustavo Pimentel <gustavo.pimentel@xxxxxxxxxxxx>
---
 ls-caps.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ls-caps.c b/ls-caps.c
index 507771a..cd13a37 100644
--- a/ls-caps.c
+++ b/ls-caps.c
@@ -1104,10 +1104,10 @@ cap_msix(struct device *d, int where, int cap)
 
   off = get_conf_long(d, where + PCI_MSIX_TABLE);
   printf("\t\tVector table: BAR=%d offset=%08x\n",
-	 off & PCI_MSIX_BIR, off & ~PCI_MSIX_BIR);
+	 off & PCI_MSIX_BIR, (off & ~PCI_MSIX_BIR) >> 3);
   off = get_conf_long(d, where + PCI_MSIX_PBA);
   printf("\t\tPBA: BAR=%d offset=%08x\n",
-	 off & PCI_MSIX_BIR, off & ~PCI_MSIX_BIR);
+	 off & PCI_MSIX_BIR, (off & ~PCI_MSIX_BIR) >> 3);
 }
 
 static void
-- 
2.7.4





[Index of Archives]     [DMA Engine]     [Linux Coverity]     [Linux USB]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Greybus]

  Powered by Linux