Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/include/media/i2c/adv7393.h
26285 views
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
/*
3
* ADV7393 header file
4
*
5
* Copyright (C) 2010-2012 ADVANSEE - http://www.advansee.com/
6
* Benoît Thébaudeau <[email protected]>
7
*
8
* Based on ADV7343 driver,
9
*
10
* Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/
11
*/
12
13
#ifndef ADV7393_H
14
#define ADV7393_H
15
16
#define ADV7393_COMPOSITE_ID (0)
17
#define ADV7393_COMPONENT_ID (1)
18
#define ADV7393_SVIDEO_ID (2)
19
20
#endif /* End of #ifndef ADV7393_H */
21
22