Files
linux-nvgpu/drivers/gpu/nvgpu/os/posix/posix-nvlink.c
Nicolas Benech 34b34915f8 gpu: nvgpu: fix MISRA 17.7 in falcon_bootstrap
MISRA Rule-17.7 requires the return value of all functions to be used.
Fix is either to use the return value or change the function to return
void. This patch changes calls to nvgpu_falcon_bootstrap to handle
error codes.

JIRA NVGPU-677

Change-Id: I1d9df6053c727e7eb3d99682ff7bb06267608a54
Signed-off-by: Nicolas Benech <nbenech@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2008797
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
2019-02-07 16:54:30 -08:00

94 lines
2.1 KiB
C

/*
* Copyright (c) 2018-2019, NVIDIA CORPORATION. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#include <nvgpu/nvlink.h>
#include <nvgpu/bug.h>
#include <nvgpu/nvlink_probe.h>
struct gk20a;
struct nvgpu_firmware;
int nvgpu_nvlink_train(struct gk20a *g, u32 link_id, bool from_off)
{
return -ENOSYS;
}
int nvgpu_nvlink_enumerate(struct gk20a *g)
{
return -ENOSYS;
}
int nvgpu_nvlink_register_device(struct gk20a *g)
{
BUG();
return 0;
}
int nvgpu_nvlink_unregister_device(struct gk20a *g)
{
BUG();
return 0;
}
int nvgpu_nvlink_register_link(struct gk20a *g)
{
BUG();
return 0;
}
int nvgpu_nvlink_unregister_link(struct gk20a *g)
{
BUG();
return 0;
}
int nvgpu_nvlink_setup_ndev(struct gk20a *g)
{
BUG();
return 0;
}
int nvgpu_nvlink_init_ops(struct gk20a *g)
{
BUG();
return 0;
}
int nvgpu_nvlink_read_dt_props(struct gk20a *g)
{
BUG();
return 0;
}
int nvgpu_nvlink_minion_load_ucode(struct gk20a *g,
struct nvgpu_firmware *nvgpu_minion_fw)
{
BUG();
return 0;
}
void nvgpu_nvlink_free_minion_used_mem(struct gk20a *g,
struct nvgpu_firmware *nvgpu_minion_fw)
{
BUG();
}