aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/hotplug/pciehp_hpc.c
diff options
context:
space:
mode:
authorKenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>2008-06-20 12:05:12 +0900
committerJesse Barnes <jbarnes@virtuousgeek.org>2008-06-25 15:55:11 -0700
commit66618bad123494beb30c0d590460e972e5b0977e (patch)
tree4750c192e5f004cc97dd8e031484eda976fcddcb /drivers/pci/hotplug/pciehp_hpc.c
parent820943b6fc4781621dee52ba026106758a727dd3 (diff)
downloadkernel_samsung_smdk4412-66618bad123494beb30c0d590460e972e5b0977e.zip
kernel_samsung_smdk4412-66618bad123494beb30c0d590460e972e5b0977e.tar.gz
kernel_samsung_smdk4412-66618bad123494beb30c0d590460e972e5b0977e.tar.bz2
pciehp: change command polling frequency
Change command polling frequency to 100Hz from 10Hz in order to reduce the delay in the common case of a command completing quickly. Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/hotplug/pciehp_hpc.c')
-rw-r--r--drivers/pci/hotplug/pciehp_hpc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/hotplug/pciehp_hpc.c b/drivers/pci/hotplug/pciehp_hpc.c
index 36ea949..5ef4bae 100644
--- a/drivers/pci/hotplug/pciehp_hpc.c
+++ b/drivers/pci/hotplug/pciehp_hpc.c
@@ -259,8 +259,8 @@ static inline int pcie_poll_cmd(struct controller *ctrl)
}
}
while (timeout > 1000) {
- msleep(100);
- timeout -= 100;
+ msleep(10);
+ timeout -= 10;
if (!pciehp_readw(ctrl, SLOTSTATUS, &slot_status)) {
if (slot_status & CMD_COMPLETED) {
pciehp_writew(ctrl, SLOTSTATUS, CMD_COMPLETED);