diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2021-03-26 15:28:48 +0300 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2021-04-07 20:47:22 +0300 |
commit | 4d7ddd8d30da80518f50e7e19b67e9ec5489ddba (patch) | |
tree | adc34925b9f8adf49b1c83f2d92b29e7880e8ffd | |
parent | dff935f006c33ab3b849d8b253df7e2cfc502a40 (diff) | |
download | linux-4d7ddd8d30da80518f50e7e19b67e9ec5489ddba.tar.xz |
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>
-rw-r--r-- | drivers/platform/surface/surface_dtx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/surface/surface_dtx.c b/drivers/platform/surface/surface_dtx.c index 1fedacf74050..63ce587e79e3 100644 --- a/drivers/platform/surface/surface_dtx.c +++ b/drivers/platform/surface/surface_dtx.c @@ -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. */ |