Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
26 lines
634 B
C
26 lines
634 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* linux/sound/wm9090.h -- Platform data for WM9090
|
|
*
|
|
* Copyright 2009, 2010 Wolfson Microelectronics. PLC.
|
|
*/
|
|
|
|
#ifndef __LINUX_SND_WM9090_H
|
|
#define __LINUX_SND_WM9090_H
|
|
|
|
struct wm9090_platform_data {
|
|
/* Line inputs 1 & 2 can optionally be differential */
|
|
unsigned int lin1_diff:1;
|
|
unsigned int lin2_diff:1;
|
|
|
|
/* AGC configuration. This is intended to protect the speaker
|
|
* against overdriving and will therefore depend on the
|
|
* hardware setup with incorrect runtime configuration
|
|
* potentially causing hardware damage.
|
|
*/
|
|
unsigned int agc_ena:1;
|
|
u16 agc[3];
|
|
};
|
|
|
|
#endif
|