1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * ddbridge-ci.h: Digital Devices bridge CI (DuoFlex, CI Bridge) support 4 * 5 * Copyright (C) 2010-2017 Digital Devices GmbH 6 * Marcus Metzler <mocm@metzlerbros.de> 7 * Ralph Metzler <rjkm@metzlerbros.de> 8 */ 9 10 #ifndef __DDBRIDGE_CI_H__ 11 #define __DDBRIDGE_CI_H__ 12 13 #include "ddbridge.h" 14 15 /******************************************************************************/ 16 17 int ddb_ci_attach(struct ddb_port *port, u32 bitrate); 18 void ddb_ci_detach(struct ddb_port *port); 19 20 #endif /* __DDBRIDGE_CI_H__ */ 21