]> Git Repo - linux.git/blob - drivers/media/tuners/tua9001_priv.h
x86/kaslr: Expose and use the end of the physical memory address space
[linux.git] / drivers / media / tuners / tua9001_priv.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Infineon TUA9001 silicon tuner driver
4  *
5  * Copyright (C) 2009 Antti Palosaari <[email protected]>
6  */
7
8 #ifndef TUA9001_PRIV_H
9 #define TUA9001_PRIV_H
10
11 #include "tua9001.h"
12 #include <linux/math64.h>
13 #include <linux/regmap.h>
14
15 struct tua9001_reg_val {
16         u8 reg;
17         u16 val;
18 };
19
20 struct tua9001_dev {
21         struct dvb_frontend *fe;
22         struct i2c_client *client;
23         struct regmap *regmap;
24 };
25
26 #endif
This page took 0.0303 seconds and 4 git commands to generate.