diff options
author | Andrew Donnellan <andrew.donnellan@au1.ibm.com> | 2016-11-22 05:13:27 -0500 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2016-11-23 06:57:49 -0500 |
commit | 3382a6220ff3bac886d9d90766f3fe18cf25b468 (patch) | |
tree | 44b0b45a39044ccb53c45e8d2152bd2b437fd426 /drivers/misc/cxl/native.c | |
parent | 902e06eb86cd62753974c249bd1dedae2825b430 (diff) |
cxl: Fix coccinelle warnings
Fix the following coccinelle warnings:
drivers/misc/cxl/debugfs.c:46:0-23: WARNING: fops_io_x64 should be
defined with DEFINE_DEBUGFS_ATTRIBUTE
drivers/misc/cxl/guest.c:890:5-26: WARNING: Comparison to bool
drivers/misc/cxl/irq.c:107:3-23: WARNING: Assignment of bool to 0/1
drivers/misc/cxl/native.c:57:2-3: Unneeded semicolon
drivers/misc/cxl/native.c:170:2-3: Unneeded semicolon
Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
Acked-by: Frederic Barrat <fbarrat@linux.vnet.ibm.com>
Reviewed-by: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
Acked-by: Ian Munsie <imunsie@au1.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'drivers/misc/cxl/native.c')
-rw-r--r-- | drivers/misc/cxl/native.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/misc/cxl/native.c b/drivers/misc/cxl/native.c index c336350ede94..c1216d31796c 100644 --- a/drivers/misc/cxl/native.c +++ b/drivers/misc/cxl/native.c | |||
@@ -54,7 +54,7 @@ static int afu_control(struct cxl_afu *afu, u64 command, u64 clear, | |||
54 | AFU_Cntl | command); | 54 | AFU_Cntl | command); |
55 | cpu_relax(); | 55 | cpu_relax(); |
56 | AFU_Cntl = cxl_p2n_read(afu, CXL_AFU_Cntl_An); | 56 | AFU_Cntl = cxl_p2n_read(afu, CXL_AFU_Cntl_An); |
57 | }; | 57 | } |
58 | 58 | ||
59 | if (AFU_Cntl & CXL_AFU_Cntl_An_RA) { | 59 | if (AFU_Cntl & CXL_AFU_Cntl_An_RA) { |
60 | /* | 60 | /* |
@@ -167,7 +167,7 @@ int cxl_psl_purge(struct cxl_afu *afu) | |||
167 | cpu_relax(); | 167 | cpu_relax(); |
168 | } | 168 | } |
169 | PSL_CNTL = cxl_p1n_read(afu, CXL_PSL_SCNTL_An); | 169 | PSL_CNTL = cxl_p1n_read(afu, CXL_PSL_SCNTL_An); |
170 | }; | 170 | } |
171 | end = local_clock(); | 171 | end = local_clock(); |
172 | pr_devel("PSL purged in %lld ns\n", end - start); | 172 | pr_devel("PSL purged in %lld ns\n", end - start); |
173 | 173 | ||