]> Git Repo - J-linux.git/blob - drivers/media/dvb-frontends/mn88473_priv.h
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / drivers / media / dvb-frontends / mn88473_priv.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Panasonic MN88473 DVB-T/T2/C demodulator driver
4  *
5  * Copyright (C) 2014 Antti Palosaari <[email protected]>
6  */
7
8 #ifndef MN88473_PRIV_H
9 #define MN88473_PRIV_H
10
11 #include <media/dvb_frontend.h>
12 #include <linux/int_log.h>
13 #include "mn88473.h"
14 #include <linux/math64.h>
15 #include <linux/firmware.h>
16 #include <linux/regmap.h>
17
18 #define MN88473_FIRMWARE "dvb-demod-mn88473-01.fw"
19
20 struct mn88473_dev {
21         struct i2c_client *client[3];
22         struct regmap *regmap[3];
23         struct dvb_frontend frontend;
24         u16 i2c_wr_max;
25         bool active;
26         u32 clk;
27 };
28
29 #endif
This page took 0.029172 seconds and 4 git commands to generate.