mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 15:04:27 +08:00
67a5135a64
Replace the old license information with the corresponding SPDX license. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
21 lines
477 B
C
21 lines
477 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* vivid-cec.h - A Virtual Video Test Driver, cec emulation
|
|
*
|
|
* Copyright 2016 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
|
|
*/
|
|
|
|
#ifdef CONFIG_VIDEO_VIVID_CEC
|
|
struct cec_adapter *vivid_cec_alloc_adap(struct vivid_dev *dev,
|
|
unsigned int idx,
|
|
bool is_source);
|
|
void vivid_cec_bus_free_work(struct vivid_dev *dev);
|
|
|
|
#else
|
|
|
|
static inline void vivid_cec_bus_free_work(struct vivid_dev *dev)
|
|
{
|
|
}
|
|
|
|
#endif
|