mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 02:22:34 +03:00
gpu: nvgpu: mm: fix MISRA 21.2 in page_table
MISRA rule 21.2 prohibits using __name for functions and identifiers. Fix MISRA 21.2 violations in nvgpu.common.mm.gmmu.page_table. JIRA NVGPU-3340 Change-Id: I8963ce4df96e4e9cf286135d87bfab7703d4f5bd Signed-off-by: Philip Elcan <pelcan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2110595 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
3d64bc19df
commit
93cfec16a9
@@ -262,7 +262,7 @@ static int map_buffer(struct unit_module *m,
|
||||
/*
|
||||
* Based on the virtual address returned, lookup the corresponding PTE
|
||||
*/
|
||||
ret = __nvgpu_get_pte(g, vm, mapped_buf->addr, pte);
|
||||
ret = nvgpu_get_pte(g, vm, mapped_buf->addr, pte);
|
||||
if (ret != 0) {
|
||||
unit_err(m, "PTE lookup failed\n");
|
||||
ret = UNIT_FAIL;
|
||||
|
||||
Reference in New Issue
Block a user