// SPDX-License-Identifier: GPL-2.0-or-later /* * netup-init.c * * NetUP Dual DVB-S2 CI driver * * Copyright (C) 2009 NetUP Inc. * Copyright (C) 2009 Igor M. Liplianin <[email protected]> * Copyright (C) 2009 Abylay Ospan <[email protected]> */ #include "cx23885.h" #include "netup-init.h" static void i2c_av_write(struct i2c_adapter *i2c, u16 reg, u8 val) { … } static void i2c_av_write4(struct i2c_adapter *i2c, u16 reg, u32 val) { … } static u8 i2c_av_read(struct i2c_adapter *i2c, u16 reg) { … } static void i2c_av_and_or(struct i2c_adapter *i2c, u16 reg, unsigned and_mask, u8 or_value) { … } /* set 27MHz on AUX_CLK */ void netup_initialize(struct cx23885_dev *dev) { … }