Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * wm8960.h -- WM8960 Soc Audio driver platform data
4 */
5
6#ifndef _WM8960_PDATA_H
7#define _WM8960_PDATA_H
8
9#define WM8960_DRES_400R 0
10#define WM8960_DRES_200R 1
11#define WM8960_DRES_600R 2
12#define WM8960_DRES_150R 3
13#define WM8960_DRES_MAX 3
14
15struct wm8960_data {
16 bool capless; /* Headphone outputs configured in capless mode */
17
18 bool shared_lrclk; /* DAC and ADC LRCLKs are wired together */
19};
20
21#endif