2012-08-14 00:18:02 +00:00
|
|
|
/*
|
|
|
|
* Driver for Micronas DRX39xx family (drx3933j)
|
|
|
|
*
|
2010-07-04 21:42:11 +00:00
|
|
|
* Written by Devin Heitmueller <devin.heitmueller@kernellabs.com>
|
2012-08-14 00:18:02 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DRX39XXJ_H
|
|
|
|
#define DRX39XXJ_H
|
|
|
|
|
|
|
|
#include <linux/dvb/frontend.h>
|
2017-12-28 18:03:51 +00:00
|
|
|
#include <media/dvb_frontend.h>
|
2012-08-14 00:18:02 +00:00
|
|
|
#include "drx_driver.h"
|
|
|
|
|
|
|
|
struct drx39xxj_state {
|
|
|
|
struct i2c_adapter *i2c;
|
[media] drx-j: get rid of typedefs in drx_driver.h
Most of the changes were done with scripts like:
for i in drivers/media/dvb-frontends/drx39xyj/*.[ch]; do perl -ne '$var = "drx_sig_quality"; s,\b($var)_t\s+,struct \1 ,g; s,\bp_*($var)_t\s+,struct \1 *,g; s,\b($var)_t\b,struct \1,g; s,\bp_*($var)_t\b,struct \1 *,g; print $_' <$i >a && mv a $i; done
Acked-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
2014-01-16 15:51:36 +00:00
|
|
|
struct drx_demod_instance *demod;
|
2012-08-14 00:18:02 +00:00
|
|
|
struct dvb_frontend frontend;
|
|
|
|
unsigned int i2c_gate_open:1;
|
2014-01-18 14:13:02 +00:00
|
|
|
const struct firmware *fw;
|
2012-08-14 00:18:02 +00:00
|
|
|
};
|
|
|
|
|
2015-04-08 18:04:35 +00:00
|
|
|
#if IS_REACHABLE(CONFIG_DVB_DRX39XYJ)
|
2014-01-16 14:28:52 +00:00
|
|
|
struct dvb_frontend *drx39xxj_attach(struct i2c_adapter *i2c);
|
2014-03-09 12:46:39 +00:00
|
|
|
#else
|
|
|
|
static inline struct dvb_frontend *drx39xxj_attach(struct i2c_adapter *i2c) {
|
|
|
|
return NULL;
|
|
|
|
};
|
|
|
|
#endif
|
2012-08-14 00:18:02 +00:00
|
|
|
|
2014-01-16 14:08:15 +00:00
|
|
|
#endif /* DVB_DUMMY_FE_H */
|