diff options
author | Daniel Scheller <d.scheller@gmx.net> | 2017-10-15 22:51:52 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-12-11 19:04:46 +0100 |
commit | 70d3ae1bea1037e27686ff704f5c8b3941e66c47 (patch) | |
tree | 3e97bc4329c79645a6b6d92d3a1cfb41c60b3a04 /drivers/media/pci/ddbridge/ddbridge-ci.h | |
parent | media: ddbridge: fixup checkpatch-strict issues (diff) | |
download | linux-70d3ae1bea1037e27686ff704f5c8b3941e66c47.tar.xz linux-70d3ae1bea1037e27686ff704f5c8b3941e66c47.zip |
media: ddbridge: split off CI (common interface) from ddbridge-core
Move all CI device support related code from ddbridge-core to ddbridge-ci,
following the previously split off MaxS4/8 support.
Signed-off-by: Daniel Scheller <d.scheller@gmx.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/pci/ddbridge/ddbridge-ci.h')
-rw-r--r-- | drivers/media/pci/ddbridge/ddbridge-ci.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/drivers/media/pci/ddbridge/ddbridge-ci.h b/drivers/media/pci/ddbridge/ddbridge-ci.h new file mode 100644 index 000000000000..3a5d7ffab7b7 --- /dev/null +++ b/drivers/media/pci/ddbridge/ddbridge-ci.h @@ -0,0 +1,30 @@ +/* + * ddbridge-ci.h: Digital Devices bridge CI (DuoFlex, CI Bridge) support + * + * Copyright (C) 2010-2017 Digital Devices GmbH + * Marcus Metzler <mocm@metzlerbros.de> + * Ralph Metzler <rjkm@metzlerbros.de> + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * version 2 only, as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * To obtain the license, point your browser to + * http://www.gnu.org/copyleft/gpl.html + */ + +#ifndef __DDBRIDGE_CI_H__ +#define __DDBRIDGE_CI_H__ + +#include "ddbridge.h" + +/******************************************************************************/ + +int ddb_ci_attach(struct ddb_port *port, u32 bitrate); + +#endif /* __DDBRIDGE_CI_H__ */ |