gpu: nvgpu: s/*_flcn_*/*_falcon_*

There is mixed usage of falcon & flcn in function and data types.
Lets update all with "falcon" for consistency with file names.

JIRA NVGPU-1459

Change-Id: I02dbc866ce2cca009f2e8b87cfe11a919ec10749
Signed-off-by: Sagar Kamble <skamble@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/1953793
Reviewed-by: Vijayakumar Subbu <vsubbu@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Sagar Kamble
2018-11-19 16:12:13 +05:30
committed by mobile promotions
parent 1da7c720c0
commit fd332ca6b4
24 changed files with 220 additions and 220 deletions

View File

@@ -153,27 +153,27 @@ int gk20a_finalize_poweron(struct gk20a *g)
}
/* init interface layer support for PMU falcon */
err = nvgpu_flcn_sw_init(g, FALCON_ID_PMU);
err = nvgpu_falcon_sw_init(g, FALCON_ID_PMU);
if (err != 0) {
nvgpu_err(g, "failed to sw init FALCON_ID_PMU");
goto done;
}
err = nvgpu_flcn_sw_init(g, FALCON_ID_SEC2);
err = nvgpu_falcon_sw_init(g, FALCON_ID_SEC2);
if (err != 0) {
nvgpu_err(g, "failed to sw init FALCON_ID_SEC2");
goto done;
}
err = nvgpu_flcn_sw_init(g, FALCON_ID_NVDEC);
err = nvgpu_falcon_sw_init(g, FALCON_ID_NVDEC);
if (err != 0) {
nvgpu_err(g, "failed to sw init FALCON_ID_NVDEC");
goto done;
}
err = nvgpu_flcn_sw_init(g, FALCON_ID_GSPLITE);
err = nvgpu_falcon_sw_init(g, FALCON_ID_GSPLITE);
if (err != 0) {
nvgpu_err(g, "failed to sw init FALCON_ID_GSPLITE");
goto done;
}
err = nvgpu_flcn_sw_init(g, FALCON_ID_FECS);
err = nvgpu_falcon_sw_init(g, FALCON_ID_FECS);
if (err != 0) {
nvgpu_err(g, "failed to sw init FALCON_ID_FECS");
goto done;