diff options
author | Anastasiia Lukianenko | 2020-08-21 12:10:04 +0300 |
---|---|---|
committer | Tom Rini | 2020-08-24 14:11:31 -0400 |
commit | 3337b291442e31b1db0ff5975f74fec7d9741794 (patch) | |
tree | d9390e7adf2af2712d942196bc067d477b94ce08 /include/xen | |
parent | d226b3cd259baa8f39c595f1176d4770000cfcd5 (diff) |
xen: Code style conformity
Cleaning up the following:
ERROR: do not use assignment in if condition
#281: FILE: drivers/xen/pvblock.c:260:
+ if ((err = xenbus_switch_state(XBT_NIL, nodename,
CHECK:COMPARISON_TO_NULL: Comparison to NULL could be written "err"
#52: FILE: drivers/xen/pvblock.c:298:
+ if (err != NULL) {
ERROR: do not use assignment in if condition
#176: FILE: drivers/xen/gnttab.c:103:
+ if ((flags = nflags) & (GTF_reading | GTF_writing)) {
WARNING: Missing or malformed SPDX-License-Identifier tag in line 1
#329: FILE: include/xen/gnttab.h:1:
+/*
WARNING: Misplaced SPDX-License-Identifier tag - use line 1 instead
#330: FILE: include/xen/gnttab.h:2:
+ * SPDX-License-Identifier: GPL-2.0
ERROR: do not use assignment in if condition
#630: FILE: lib/sscanf.c:558:
+ if ((n = inr) < width) {
Signed-off-by: Anastasiia Lukianenko <anastasiia_lukianenko@epam.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/xen')
-rw-r--r-- | include/xen/gnttab.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/xen/gnttab.h b/include/xen/gnttab.h index db1d5361fed..db615004aa5 100644 --- a/include/xen/gnttab.h +++ b/include/xen/gnttab.h @@ -1,5 +1,4 @@ -/* - * SPDX-License-Identifier: GPL-2.0 +/* SPDX-License-Identifier: GPL-2.0 * * (C) 2006, Steven Smith <sos22@cam.ac.uk> * (C) 2006, Grzegorz Milos <gm281@cam.ac.uk> |