Commit 18b67315 authored by Jiapeng Chong's avatar Jiapeng Chong Committed by Oded Gabbay

habanalabs: Fix kernel-doc

Fix the following W=1 kernel warnings:

drivers/misc/habanalabs/common/mmu/mmu_v1.c:425: warning: expecting
prototype for hl_mmu_fini(). Prototype was for hl_mmu_v1_fini() instead.

drivers/misc/habanalabs/common/mmu/mmu_v1.c:449: warning: expecting
prototype for hl_mmu_ctx_init(). Prototype was for hl_mmu_v1_ctx_init()
instead.
Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Signed-off-by: default avatarJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Reviewed-by: default avatarOded Gabbay <ogabbay@kernel.org>
Signed-off-by: default avatarOded Gabbay <ogabbay@kernel.org>
parent 858e6d40
...@@ -412,7 +412,7 @@ static int hl_mmu_v1_init(struct hl_device *hdev) ...@@ -412,7 +412,7 @@ static int hl_mmu_v1_init(struct hl_device *hdev)
} }
/** /**
* hl_mmu_fini() - release the MMU module. * hl_mmu_v1_fini() - release the MMU module.
* @hdev: habanalabs device structure. * @hdev: habanalabs device structure.
* *
* This function does the following: * This function does the following:
...@@ -438,7 +438,7 @@ static void hl_mmu_v1_fini(struct hl_device *hdev) ...@@ -438,7 +438,7 @@ static void hl_mmu_v1_fini(struct hl_device *hdev)
} }
/** /**
* hl_mmu_ctx_init() - initialize a context for using the MMU module. * hl_mmu_v1_ctx_init() - initialize a context for using the MMU module.
* @ctx: pointer to the context structure to initialize. * @ctx: pointer to the context structure to initialize.
* *
* Initialize a mutex to protect the concurrent mapping flow, a hash to hold all * Initialize a mutex to protect the concurrent mapping flow, a hash to hold all
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment