aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/cxl/native.c
diff options
context:
space:
mode:
authorMichael Neuling <mikey@neuling.org>2015-05-27 02:07:09 -0400
committerMichael Ellerman <mpe@ellerman.id.au>2015-06-02 23:27:18 -0400
commitb12994fbfe9362e3b5ed9f360d3cd6fb34d6645a (patch)
treee2c9d1a7e755a0de3509e467beec43fcbdc1dce5 /drivers/misc/cxl/native.c
parenteda3693c842ed169af66af943554c648633769d0 (diff)
cxl: cxl_afu_reset() -> __cxl_afu_reset()
Rename cxl_afu_reset() to __cxl_afu_reset() to we can reuse this function name in the API. Signed-off-by: Michael Neuling <mikey@neuling.org> 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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/misc/cxl/native.c b/drivers/misc/cxl/native.c
index 29185fc61276..f85b6ae5ecf2 100644
--- a/drivers/misc/cxl/native.c
+++ b/drivers/misc/cxl/native.c
@@ -73,7 +73,7 @@ int cxl_afu_disable(struct cxl_afu *afu)
73} 73}
74 74
75/* This will disable as well as reset */ 75/* This will disable as well as reset */
76int cxl_afu_reset(struct cxl_afu *afu) 76int __cxl_afu_reset(struct cxl_afu *afu)
77{ 77{
78 pr_devel("AFU reset request\n"); 78 pr_devel("AFU reset request\n");
79 79
@@ -495,7 +495,7 @@ static int deactivate_afu_directed(struct cxl_afu *afu)
495 cxl_sysfs_afu_m_remove(afu); 495 cxl_sysfs_afu_m_remove(afu);
496 cxl_chardev_afu_remove(afu); 496 cxl_chardev_afu_remove(afu);
497 497
498 cxl_afu_reset(afu); 498 __cxl_afu_reset(afu);
499 cxl_afu_disable(afu); 499 cxl_afu_disable(afu);
500 cxl_psl_purge(afu); 500 cxl_psl_purge(afu);
501 501
@@ -566,7 +566,7 @@ static int attach_dedicated(struct cxl_context *ctx, u64 wed, u64 amr)
566 /* master only context for dedicated */ 566 /* master only context for dedicated */
567 assign_psn_space(ctx); 567 assign_psn_space(ctx);
568 568
569 if ((rc = cxl_afu_reset(afu))) 569 if ((rc = __cxl_afu_reset(afu)))
570 return rc; 570 return rc;
571 571
572 cxl_p2n_write(afu, CXL_PSL_WED_An, wed); 572 cxl_p2n_write(afu, CXL_PSL_WED_An, wed);
@@ -629,7 +629,7 @@ int cxl_attach_process(struct cxl_context *ctx, bool kernel, u64 wed, u64 amr)
629 629
630static inline int detach_process_native_dedicated(struct cxl_context *ctx) 630static inline int detach_process_native_dedicated(struct cxl_context *ctx)
631{ 631{
632 cxl_afu_reset(ctx->afu); 632 __cxl_afu_reset(ctx->afu);
633 cxl_afu_disable(ctx->afu); 633 cxl_afu_disable(ctx->afu);
634 cxl_psl_purge(ctx->afu); 634 cxl_psl_purge(ctx->afu);
635 return 0; 635 return 0;