mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 01:31:30 +03:00
The functions nvhost_job_put() and nvhost_syncpt_set_minval() are no longer used so remove these functions. The flag CONFIG_TEGRA_HOST1X is always true for out-of-tree drivers and so remove the legacy code for when this flag is not defined. Bug 4475969 Change-Id: I88c89d30bfc9be4b8628f115ea96835cb5f6f295 Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3091653 GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-by: Brad Griffis <bgriffis@nvidia.com>
21 lines
532 B
C
21 lines
532 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2017-2024, NVIDIA Corporation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __LINUX_NVHOST_T194_H__
|
|
#define __LINUX_NVHOST_T194_H__
|
|
|
|
int nvhost_syncpt_unit_interface_get_aperture(
|
|
struct platform_device *host_pdev,
|
|
phys_addr_t *base,
|
|
size_t *size);
|
|
|
|
u32 nvhost_syncpt_unit_interface_get_byte_offset(u32 syncpt_id);
|
|
|
|
u32 nvhost_syncpt_unit_interface_get_byte_offset_ext(
|
|
struct platform_device *host_pdev,
|
|
u32 syncpt_id);
|
|
|
|
#endif /* __LINUX_NVHOST_T194_H__ */
|