brintos

brintos / linux-shallow public Read only

0
0
Text · 442 B · 62c5fa1 Raw
22 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * Platform data for WM89554 *5 * Copyright 2009 Wolfson Microelectronics PLC.6 *7 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>8 */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#endif22