1 /* 2 * ddbridge-ci.h: Digital Devices bridge CI (DuoFlex, CI Bridge) support 3 * 4 * Copyright (C) 2010-2017 Digital Devices GmbH 5 * Marcus Metzler <mocm@metzlerbros.de> 6 * Ralph Metzler <rjkm@metzlerbros.de> 7 * 8 * This program is free software; you can redistribute it and/or 9 * modify it under the terms of the GNU General Public License 10 * version 2 only, as published by the Free Software Foundation. 11 * 12 * This program is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * To obtain the license, point your browser to 18 * http://www.gnu.org/copyleft/gpl.html 19 */ 20 21 #ifndef __DDBRIDGE_CI_H__ 22 #define __DDBRIDGE_CI_H__ 23 24 #include "ddbridge.h" 25 26 /******************************************************************************/ 27 28 int ddb_ci_attach(struct ddb_port *port, u32 bitrate); 29 void ddb_ci_detach(struct ddb_port *port); 30 31 #endif /* __DDBRIDGE_CI_H__ */ 32