2020-02-17 12:44:58

by Vidya Sagar

[permalink] [raw]
Subject: [PATCH V3 1/5] PCI: endpoint: Add core init notifying feature

Add a new feature core_init_notifier for cores that can notify about
their availability for initialization (Ex:- Tegra194).

Signed-off-by: Vidya Sagar <[email protected]>
Acked-by: Kishon Vijay Abraham I <[email protected]>
---
V3:
* Added Acked-by: Kishon Vijay Abraham I <[email protected]>

V2:
* This is a new patch in this series

include/linux/pci-epc.h | 1 +
1 file changed, 1 insertion(+)

diff --git a/include/linux/pci-epc.h b/include/linux/pci-epc.h
index ccaf6e3fa931..9ffe6bd081ae 100644
--- a/include/linux/pci-epc.h
+++ b/include/linux/pci-epc.h
@@ -120,6 +120,7 @@ struct pci_epc {
*/
struct pci_epc_features {
unsigned int linkup_notifier : 1;
+ unsigned int core_init_notifier : 1;
unsigned int msi_capable : 1;
unsigned int msix_capable : 1;
u8 reserved_bar;
--
2.17.1