platform/surface: clean up a variable in surface_dtx_read()
The "&client->ddev->lock" and "&ddev->lock" are the same thing. Let's use "&ddev->lock" consistently. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Maximilian Luz <luzmaximilian@gmail.com> Link: https://lore.kernel.org/r/YF3TgCcpcCYl3a//@mwanda Signed-off-by: Hans de Goede <hdegoede@redhat.com>
This commit is contained in:
parent
dff935f006
commit
4d7ddd8d30
|
@ -487,7 +487,7 @@ static ssize_t surface_dtx_read(struct file *file, char __user *buf, size_t coun
|
|||
if (status < 0)
|
||||
return status;
|
||||
|
||||
if (down_read_killable(&client->ddev->lock))
|
||||
if (down_read_killable(&ddev->lock))
|
||||
return -ERESTARTSYS;
|
||||
|
||||
/* Need to check that we're not shut down again. */
|
||||
|
|
Loading…
Reference in New Issue