diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2024-09-03 23:38:25 +0300 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2024-09-03 23:38:47 +0300 |
commit | 7cb9b5fa218caa899f4288865c4598357bcce4e9 (patch) | |
tree | ee2da476111d5465697e37df9a8fe41d6e1a4158 | |
parent | 8400291e289ee6b2bf9779ff1c83a291501f017b (diff) | |
download | linux-7cb9b5fa218caa899f4288865c4598357bcce4e9.tar.xz |
PCI: endpoint: Fix enum pci_epc_bar_type kerneldoc
e01c9797c0eb ("PCI: endpoint: Clean up hardware description for BARs")
added enum pci_epc_bar_type with incomplete kerneldoc. Add the missing
piece.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
-rw-r--r-- | include/linux/pci-epc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/pci-epc.h b/include/linux/pci-epc.h index 85bdf2adb760..697cc190747d 100644 --- a/include/linux/pci-epc.h +++ b/include/linux/pci-epc.h @@ -149,6 +149,7 @@ struct pci_epc { }; /** + * enum pci_epc_bar_type - configurability of endpoint BAR * @BAR_PROGRAMMABLE: The BAR mask can be configured by the EPC. * @BAR_FIXED: The BAR mask is fixed by the hardware. * @BAR_RESERVED: The BAR should not be touched by an EPF driver. |