diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2013-04-17 17:43:40 -0600 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-04-23 09:50:30 -0600 |
commit | 909094c62e21c71c4fd122642512ad05b75fe019 (patch) | |
tree | 243360c2431db524c2ca3eb00a17431f1244a601 /drivers/pci/msi.h | |
parent | 4987ce82056327a43cd58c32adf8a3f255e7d862 (diff) | |
download | op-kernel-dev-909094c62e21c71c4fd122642512ad05b75fe019.zip op-kernel-dev-909094c62e21c71c4fd122642512ad05b75fe019.tar.gz |
PCI: Drop msix_table_offset_reg() and msix_pba_offset_reg() macros
msix_table_offset_reg() is used only once and adds a useless indirection,
so just use the table offset directly.
msix_pba_offset_reg() is unused, so just delete it.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/msi.h')
-rw-r--r-- | drivers/pci/msi.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/pci/msi.h b/drivers/pci/msi.h index bc5cd99..d76c7b2 100644 --- a/drivers/pci/msi.h +++ b/drivers/pci/msi.h @@ -9,8 +9,6 @@ #define msi_mask_reg(base, is64bit) \ (base + ((is64bit == 1) ? PCI_MSI_MASK_64 : PCI_MSI_MASK_32)) -#define msix_table_offset_reg(base) (base + PCI_MSIX_TABLE) -#define msix_pba_offset_reg(base) (base + PCI_MSIX_PBA) #define msix_table_size(control) ((control & PCI_MSIX_FLAGS_QSIZE)+1) #define multi_msix_capable(control) msix_table_size((control)) |