]> git.baikalelectronics.ru Git - kernel.git/commit
can: sja1000: Replace mdelay with usleep_range in peak_pci_probe
authorJia-Ju Bai <baijiaju1990@gmail.com>
Wed, 11 Apr 2018 01:42:58 +0000 (09:42 +0800)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Fri, 27 Jul 2018 08:40:17 +0000 (10:40 +0200)
commit5842b46b47ba39de7649e089061a170f6ee13e0c
tree910b76ddc5871a470327850dcd59df832874a2f1
parent0fc22faad1bc796da3d98f3e3c4069bcfbcd17cf
can: sja1000: Replace mdelay with usleep_range in peak_pci_probe

peak_pci_probe() is never called in atomic context.

peak_pci_probe() is set as ".probe" in struct pci_driver.

Despite never getting called from atomic context, peak_pci_probe()
calls mdelay() to busily wait.
This is not necessary and can be replaced with usleep_range() to
avoid busy waiting.

This is found by a static analysis tool named DCNS written by myself.
And I also manually check it.

Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
drivers/net/can/sja1000/peak_pci.c