Lines Matching defs:width
6248 * @width: storage for width of limiting device
6252 * limiting_dev, speed, and width pointers are supplied) information about
6258 enum pcie_link_width *width)
6267 if (width)
6268 *width = PCIE_LNK_WIDTH_UNKNOWN;
6288 if (width)
6289 *width = next_width;
6336 * pcie_get_width_cap - query for the PCI device's link width capability
6339 * Query the PCI device width capability. Return the maximum link width
6358 * @width: storage for link width
6361 * and width, multiplying them, and applying encoding overhead. The result
6365 enum pcie_link_width *width)
6368 *width = pcie_get_width_cap(dev);
6370 if (*speed == PCI_SPEED_UNKNOWN || *width == PCIE_LNK_WIDTH_UNKNOWN)
6373 return *width * PCIE_SPEED2MBS_ENC(*speed);
6377 * __pcie_print_link_status - Report the PCI device's link speed and width
6388 enum pcie_link_width width, width_cap;
6394 bw_avail = pcie_bandwidth_available(dev, &limiting_dev, &speed, &width);
6403 pci_speed_string(speed), width,
6410 * pcie_print_link_status - Report the PCI device's link speed and width