diff options
| author | Bjorn Helgaas <bhelgaas@google.com> | 2025-03-27 13:14:48 -0500 |
|---|---|---|
| committer | Bjorn Helgaas <bhelgaas@google.com> | 2025-03-27 13:14:48 -0500 |
| commit | 479e4a014bf91750e92e2498a3c94e07dcc9cf19 (patch) | |
| tree | 17f7a02179f8a332a17bc2e77cb42217e4a7fb02 /drivers/pci/controller/cadence/pcie-cadence.h | |
| parent | Merge branch 'pci/controller/brcmstb' (diff) | |
| parent | PCI: cadence-ep: Fix the driver to send MSG TLP for INTx without data payload (diff) | |
| download | linux-479e4a014bf91750e92e2498a3c94e07dcc9cf19.tar.gz linux-479e4a014bf91750e92e2498a3c94e07dcc9cf19.zip | |
Merge branch 'pci/controller/cadence'
- Correct MSG TLP generation so endpoint can generate INTx messages (Hans
Zhang)
* pci/controller/cadence:
PCI: cadence-ep: Fix the driver to send MSG TLP for INTx without data payload
Diffstat (limited to 'drivers/pci/controller/cadence/pcie-cadence.h')
| -rw-r--r-- | drivers/pci/controller/cadence/pcie-cadence.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/controller/cadence/pcie-cadence.h b/drivers/pci/controller/cadence/pcie-cadence.h index f5eeff834ec1..39ee9945c903 100644 --- a/drivers/pci/controller/cadence/pcie-cadence.h +++ b/drivers/pci/controller/cadence/pcie-cadence.h @@ -246,7 +246,7 @@ struct cdns_pcie_rp_ib_bar { #define CDNS_PCIE_NORMAL_MSG_CODE_MASK GENMASK(15, 8) #define CDNS_PCIE_NORMAL_MSG_CODE(code) \ (((code) << 8) & CDNS_PCIE_NORMAL_MSG_CODE_MASK) -#define CDNS_PCIE_MSG_NO_DATA BIT(16) +#define CDNS_PCIE_MSG_DATA BIT(16) struct cdns_pcie; |
