diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2013-08-02 22:12:49 +0200 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2013-08-06 18:55:28 +0200 |
commit | a3c4f2fb26974b5134861af8f7593040ae61a1f4 (patch) | |
tree | 78b2667d31072cda4521967f623cf3eea1a88edf /arch/tile/include | |
parent | tile PCI RC: support more MSI-X interrupt vectors (diff) | |
download | linux-a3c4f2fb26974b5134861af8f7593040ae61a1f4.tar.xz linux-a3c4f2fb26974b5134861af8f7593040ae61a1f4.zip |
tile PCI RC: gentler warning for missing plug-in PCI
Besides using pr_info() to print the linkdown status for a plug-in
slot, add extra indication that this is expected if the slot is empty.
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile/include')
-rw-r--r-- | arch/tile/include/hv/drv_trio_intf.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/tile/include/hv/drv_trio_intf.h b/arch/tile/include/hv/drv_trio_intf.h index ef9f3f52ee27..ec643a02b4c5 100644 --- a/arch/tile/include/hv/drv_trio_intf.h +++ b/arch/tile/include/hv/drv_trio_intf.h @@ -64,8 +64,9 @@ struct pcie_port_property * will not consider it an error if the link comes up as a x8 link. */ uint8_t allow_x8: 1; - /** Reserved. */ - uint8_t reserved: 1; + /** If true, this link is connected to a device which may or may not + * be present. */ + uint8_t removable: 1; }; |