Files
linux-nv-oot/drivers/platform/tegra/nvadsp/nvadsp_shared_sema.c
Viswanath L 119c4f87e2 nvadsp: Update license and remove kernel ver check
- Update license of all files in nvadsp that will be used
 - Remove kernel version checks in the code

Bug 4164138
Bug 3682950

Change-Id: Ie1f9ba95c1d46c3dd9bc5614e502b1b444484df6
Signed-off-by: Viswanath L <viswanathl@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2980528
Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com>
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
2023-09-26 12:09:52 -07:00

29 lines
507 B
C

// SPDX-License-Identifier: GPL-2.0-only
/**
* Copyright (c) 2014-2023, NVIDIA CORPORATION. All rights reserved.
*/
#include <linux/tegra_nvadsp.h>
nvadsp_shared_sema_t *
nvadsp_shared_sema_init(uint8_t nvadsp_shared_sema_id)
{
return NULL;
}
status_t nvadsp_shared_sema_destroy(nvadsp_shared_sema_t *sema)
{
return -ENOENT;
}
status_t nvadsp_shared_sema_acquire(nvadsp_shared_sema_t *sema)
{
return -ENOENT;
}
status_t nvadsp_shared_sema_release(nvadsp_shared_sema_t *sema)
{
return -ENOENT;
}