2012-08-14 08:18:02 +08:00
|
|
|
/*
|
|
|
|
* Driver for Micronas DRX39xx family (drx3933j)
|
|
|
|
*
|
2010-07-05 05:42:11 +08:00
|
|
|
* Written by Devin Heitmueller <devin.heitmueller@kernellabs.com>
|
2012-08-14 08:18:02 +08: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-29 02:03:51 +08:00
|
|
|
#include <media/dvb_frontend.h>
|
2012-08-14 08:18:02 +08: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 23:51:36 +08:00
|
|
|
struct drx_demod_instance *demod;
|
2012-08-14 08:18:02 +08:00
|
|
|
struct dvb_frontend frontend;
|
|
|
|
unsigned int i2c_gate_open:1;
|
2014-01-18 22:13:02 +08:00
|
|
|
const struct firmware *fw;
|
2012-08-14 08:18:02 +08:00
|
|
|
};
|
|
|
|
|
2015-04-09 02:04:35 +08:00
|
|
|
#if IS_REACHABLE(CONFIG_DVB_DRX39XYJ)
|
2014-01-16 22:28:52 +08:00
|
|
|
struct dvb_frontend *drx39xxj_attach(struct i2c_adapter *i2c);
|
2014-03-09 20:46:39 +08:00
|
|
|
#else
|
|
|
|
static inline struct dvb_frontend *drx39xxj_attach(struct i2c_adapter *i2c) {
|
|
|
|
return NULL;
|
|
|
|
};
|
|
|
|
#endif
|
2012-08-14 08:18:02 +08:00
|
|
|
|
2014-01-16 22:08:15 +08:00
|
|
|
#endif /* DVB_DUMMY_FE_H */
|