threshold_ns 359 drivers/pci/pcie/aspm.c u32 threshold_ns = threshold_us * 1000; threshold_ns 362 drivers/pci/pcie/aspm.c if (threshold_ns < 32) { threshold_ns 364 drivers/pci/pcie/aspm.c *value = threshold_ns; threshold_ns 365 drivers/pci/pcie/aspm.c } else if (threshold_ns < 1024) { threshold_ns 367 drivers/pci/pcie/aspm.c *value = threshold_ns >> 5; threshold_ns 368 drivers/pci/pcie/aspm.c } else if (threshold_ns < 32768) { threshold_ns 370 drivers/pci/pcie/aspm.c *value = threshold_ns >> 10; threshold_ns 371 drivers/pci/pcie/aspm.c } else if (threshold_ns < 1048576) { threshold_ns 373 drivers/pci/pcie/aspm.c *value = threshold_ns >> 15; threshold_ns 374 drivers/pci/pcie/aspm.c } else if (threshold_ns < 33554432) { threshold_ns 376 drivers/pci/pcie/aspm.c *value = threshold_ns >> 20; threshold_ns 379 drivers/pci/pcie/aspm.c *value = threshold_ns >> 25;