mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
- 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>
14 lines
359 B
C
14 lines
359 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/**
|
|
* Copyright (c) 2014-2023, NVIDIA CORPORATION. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __TEGRA_NVADSP_ARAM_MANAGER_H
|
|
#define __TEGRA_NVADSP_ARAM_MANAGER_H
|
|
|
|
#include "mem_manager.h"
|
|
|
|
int nvadsp_aram_init(unsigned long addr, unsigned long size);
|
|
void nvadsp_aram_exit(void);
|
|
#endif /* __TEGRA_NVADSP_ARAM_MANAGER_H */
|