File: a8293.h

package info (click to toggle)
linux 6.12.74-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie-proposed-updates
  • size: 1,676,684 kB
  • sloc: ansic: 25,916,285; asm: 269,658; sh: 136,658; python: 65,456; makefile: 55,721; perl: 37,753; xml: 19,284; cpp: 5,895; yacc: 4,927; lex: 2,939; awk: 1,594; sed: 28; ruby: 25
file content (29 lines) | stat: -rw-r--r-- 582 bytes parent folder | download | duplicates (33)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Allegro A8293 SEC driver
 *
 * Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
 */

#ifndef A8293_H
#define A8293_H

#include <media/dvb_frontend.h>

/*
 * I2C address
 * 0x08, 0x09, 0x0a, 0x0b
 */

/**
 * struct a8293_platform_data - Platform data for the a8293 driver
 * @dvb_frontend: DVB frontend.
 * @volt_slew_nanos_per_mv: Slew rate when increasing LNB voltage,
 *	 in nanoseconds per millivolt.
 */
struct a8293_platform_data {
	struct dvb_frontend *dvb_frontend;
	int volt_slew_nanos_per_mv;
};

#endif /* A8293_H */