blob: 62c5fa1e18ae1c64047eb7f6f489186f48fecd79 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Mark Brownb35a28a2009-12-18 12:00:22 +00002/*
3 * Platform data for WM8955
4 *
5 * Copyright 2009 Wolfson Microelectronics PLC.
6 *
7 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brownb35a28a2009-12-18 12:00:22 +00008 */
9
10#ifndef __WM8955_PDATA_H__
11#define __WM8955_PDATA_H__
12
13struct wm8955_pdata {
14 /* Configure LOUT2/ROUT2 to drive a speaker */
15 unsigned int out2_speaker:1;
16
17 /* Configure MONOIN+/- in differential mode */
18 unsigned int monoin_diff:1;
19};
20
21#endif