gpu: drm: bridge: adv7511: Replace mdelay with usleep_range in adv7511_probe
adv7511_probe() is never called in atomic context. This function is only set as ".probe" in struct i2c_driver. Despite never getting called from atomic context, adv7511_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> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Archit Taneja <architt@codeaurora.org> Link: https://patchwork.freedesktop.org/patch/msgid/1523435622-4329-1-git-send-email-baijiaju1990@gmail.com
This commit is contained in:

zatwierdzone przez
Archit Taneja

rodzic
7bd2d2eced
commit
5f27314141
@@ -1127,7 +1127,7 @@ static int adv7511_probe(struct i2c_client *i2c, const struct i2c_device_id *id)
|
||||
}
|
||||
|
||||
if (adv7511->gpio_pd) {
|
||||
mdelay(5);
|
||||
usleep_range(5000, 6000);
|
||||
gpiod_set_value_cansleep(adv7511->gpio_pd, 0);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user