21 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * ddbridge-ci.h: Digital Devices bridge CI (DuoFlex, CI Bridge) support4 *5 * Copyright (C) 2010-2017 Digital Devices GmbH6 * 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 17int ddb_ci_attach(struct ddb_port *port, u32 bitrate);18void ddb_ci_detach(struct ddb_port *port);19 20#endif /* __DDBRIDGE_CI_H__ */21