OSDN Git Service

PCI: endpoint: Replace mdelay with usleep_range() in pci_epf_test_write()
authorJia-Ju Bai <baijiaju1990@gmail.com>
Tue, 10 Apr 2018 13:04:06 +0000 (21:04 +0800)
committerLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Tue, 8 May 2018 10:13:42 +0000 (11:13 +0100)
commit9f96b9b7d836a71733f83ba813d9e0c658090c5d
treee80d91d48151b44c07d58f3d4b02e6b91ef01fb8
parent60cc43fc888428bb2f18f08997432d426a243338
PCI: endpoint: Replace mdelay with usleep_range() in pci_epf_test_write()

pci_epf_test_write() is never called in atomic context.

The call chain ending up at pci_epf_test_write() is:
[1] pci_epf_test_write() <- pci_epf_test_cmd_handler()

pci_epf_test_cmd_handler() is set as a parameter of INIT_DELAYED_WORK()
in pci_epf_test_probe().
This function is not called in atomic context.

Despite never getting called from atomic context, pci_epf_test_write()
calls mdelay() to busy wait.

This is not necessary and can be replaced with usleep_range() to
avoid busy waiting.

Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
[lorenzo.pieralisi@arm.com: updated commit log]
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Acked-by: Kishon Vijay Abraham I <kishon@ti.com>
drivers/pci/endpoint/functions/pci-epf-test.c