diff options
author | Jia-Ju Bai <baijiaju1990@gmail.com> | 2018-04-10 10:37:06 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-04-22 16:49:42 +0300 |
commit | de0611b27d15ddc831d4c47d3b4be592c5587948 (patch) | |
tree | a818dd7639b2a8a03306fe6993e72ef3d3dcbc7a /drivers/ntb/test | |
parent | 0f0290089abd37ca54db764c294fe7e47624a313 (diff) | |
download | linux-de0611b27d15ddc831d4c47d3b4be592c5587948.tar.xz |
usb: isp1760: Replace mdelay with msleep in isp1760_stop
isp1760_stop() is never called in atomic context.
The call chain ending up at isp1760_stop() is:
[1] isp1760_stop() <- isp1760_shutdown()
isp1760_shutdown() is set as ".shutdown" in struct hc_driver.
isp1760_stop() is also set as ".stop" in hc_driver.
These functions are not called in atomic context.
Despite never getting called from atomic context, isp1760_stop()
calls mdelay() to busily wait.
This is not necessary and can be replaced with msleep() 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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/ntb/test')
0 files changed, 0 insertions, 0 deletions