diff options
author | Tom Mounet <tommounet@gmail.com> | 2024-06-29 19:47:04 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-07-03 16:15:26 +0200 |
commit | d3401cefd0f793037df0f36e12c2effdac517de1 (patch) | |
tree | e9424bc0fe2163da3a70aa3c66a3ce574abded9e /drivers/staging/nvec | |
parent | d67f063101f551dde4fb67f17cafcd98064238ee (diff) | |
download | linux-d3401cefd0f793037df0f36e12c2effdac517de1.tar.gz linux-d3401cefd0f793037df0f36e12c2effdac517de1.tar.bz2 linux-d3401cefd0f793037df0f36e12c2effdac517de1.zip |
staging: nvec: Use x instead of x != NULL to improve readability.
Use x instead of x != NULL to improve readability.
Issue identified by checkpatch.
Signed-off-by: Tom Mounet <tommounet@gmail.com>
Reviewed-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/66804898.5d0a0220.6df0f.4f0a@mx.google.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/nvec')
-rw-r--r-- | drivers/staging/nvec/nvec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/nvec/nvec.c b/drivers/staging/nvec/nvec.c index d67d2f3338b2..d09211589d1c 100644 --- a/drivers/staging/nvec/nvec.c +++ b/drivers/staging/nvec/nvec.c @@ -300,7 +300,7 @@ int nvec_write_sync(struct nvec_chip *nvec, { mutex_lock(&nvec->sync_write_mutex); - if (msg != NULL) + if (msg) *msg = NULL; nvec->sync_write_pending = (data[1] << 8) + data[0]; @@ -322,7 +322,7 @@ int nvec_write_sync(struct nvec_chip *nvec, dev_dbg(nvec->dev, "nvec_sync_write: pong!\n"); - if (msg != NULL) + if (msg) *msg = nvec->last_sync_msg; else nvec_msg_free(nvec, nvec->last_sync_msg); |