Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Copyright (C) 2013 Texas Instruments Inc
0004  *
0005  * Copyright 2013 Cisco Systems, Inc. and/or its affiliates.
0006  *
0007  * Contributors:
0008  *     Hans Verkuil <hans.verkuil@cisco.com>
0009  *     Lad, Prabhakar <prabhakar.lad@ti.com>
0010  *     Martin Bugge <marbugge@cisco.com>
0011  */
0012 
0013 #ifndef THS7353_H
0014 #define THS7353_H
0015 
0016 /**
0017  * struct ths7303_platform_data - Platform dependent data
0018  * @ch_1: Bias value for channel one.
0019  * @ch_2: Bias value for channel two.
0020  * @ch_3: Bias value for channel three.
0021  */
0022 struct ths7303_platform_data {
0023     u8 ch_1;
0024     u8 ch_2;
0025     u8 ch_3;
0026 };
0027 
0028 #endif