mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
Starting with Linux kernel v5.17, the 'slave_id' member is removed from the DMA Engine 'dma_slave_config' structure. Building the Tegra Safety Audio driver against Linux v5.17, v5.18 and v5.19 breaks because this filed is not defined. There are already comments in the driver to not used the 'slave_id' field and move to using device-tree to get this information. For now, fix the build by not using the 'slave_id' field for Linux v5.17+. Bug 3820317 Bug 3735757 Change-Id: I2fb8317604b0a797f4e1b22a53994ec0085ea584 Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2796900 Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
7 lines
179 B
Makefile
7 lines
179 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
obj-m += drivers/
|
|
obj-m += sound/soc/tegra/
|
|
obj-m += sound/tegra-safety-audio/
|