/* SPDX-License-Identifier: GPL-2.0-only */1/*2* Copyright (C) 2013 Texas Instruments Inc3*4* Copyright 2013 Cisco Systems, Inc. and/or its affiliates.5*6* Contributors:7* Hans Verkuil <[email protected]>8* Lad, Prabhakar <[email protected]>9* Martin Bugge <[email protected]>10*/1112#ifndef THS7303_H13#define THS7303_H1415/**16* struct ths7303_platform_data - Platform dependent data17* @ch_1: Bias value for channel one.18* @ch_2: Bias value for channel two.19* @ch_3: Bias value for channel three.20*/21struct ths7303_platform_data {22u8 ch_1;23u8 ch_2;24u8 ch_3;25};2627#endif282930