mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 02:01:36 +03:00
Because of the way in which Makefile is defined for the drivers, each driver file is getting compliled as separate *.ko module. This results in loading of all the *.ko modules for maintaining the functionality. Current patch re-organises makefile and thus terga-alt structure, - utils/ : will provide all the helper functions, - machine_drivers/ : lists all the machine specific drivers we have, - tegra-alt/*.c : ahub module drivers, each would have a separate driver module, - include/ : all the local header files needed for driver modules Bug 200346429 Change-Id: Ic659879a0d6e8ef48b0d79b81059fba4c069591e Signed-off-by: Sameer Pujar <spujar@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1559745 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
36 lines
1.3 KiB
C
36 lines
1.3 KiB
C
/*
|
|
* tegra_isomgr_bw_alt.h
|
|
*
|
|
* Copyright (c) 2016-2017 NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __TEGRA_ISOMGR_BW_ALT_H__
|
|
#define __TEGRA_ISOMGR_BW_ALT_H__
|
|
|
|
#if defined(CONFIG_TEGRA_ISOMGR)
|
|
void tegra_isomgr_adma_register(void);
|
|
void tegra_isomgr_adma_unregister(void);
|
|
void tegra_isomgr_adma_setbw(struct snd_pcm_substream *substream,
|
|
bool is_running);
|
|
void tegra_isomgr_adma_renegotiate(void *p, u32 avail_bw);
|
|
#else
|
|
static inline void tegra_isomgr_adma_register(void) { return; }
|
|
static inline void tegra_isomgr_adma_unregister(void) { return; }
|
|
static inline void tegra_isomgr_adma_setbw(struct snd_pcm_substream *substream,
|
|
bool is_running) { return; }
|
|
#endif
|
|
|
|
#endif
|