/* SPDX-License-Identifier: GPL-2.0-or-later */1/*2wm8775.h - definition for wm8775 inputs and outputs34Copyright (C) 2006 Hans Verkuil ([email protected])56*/78#ifndef _WM8775_H_9#define _WM8775_H_1011/* The WM8775 has 4 inputs and one output. Zero or more inputs12are multiplexed together to the output. Hence there are1316 combinations.14If only one input is active (the normal case) then the15input values 1, 2, 4 or 8 should be used. */1617#define WM8775_AIN1 118#define WM8775_AIN2 219#define WM8775_AIN3 420#define WM8775_AIN4 8212223struct wm8775_platform_data {24/*25* FIXME: Instead, we should parameterize the params26* that need different settings between ivtv, pvrusb2, and Nova-S27*/28bool is_nova_s;29};3031#endif323334