Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.18-rc1 24 lines 642 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2// 3// ALSA SoC Texas Instruments TAS5825 Audio Smart Amplifier 4// 5// Copyright (C) 2025 Texas Instruments Incorporated 6// https://www.ti.com 7// 8// The TAS5825 hda driver implements for one or two TAS5825 chips. 9// 10// Author: Baojun Xu <baojun.xu@ti.com> 11// 12 13#ifndef __TAS5825_TLV_H__ 14#define __TAS5825_TLV_H__ 15 16#define TAS5825_DVC_LEVEL TASDEVICE_REG(0x0, 0x0, 0x4c) 17#define TAS5825_AMP_LEVEL TASDEVICE_REG(0x0, 0x0, 0x54) 18 19static const __maybe_unused DECLARE_TLV_DB_SCALE( 20 tas5825_dvc_tlv, -10300, 50, 0); 21static const __maybe_unused DECLARE_TLV_DB_SCALE( 22 tas5825_amp_tlv, -1550, 50, 0); 23 24#endif