1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Socionext MN88443x series demodulator driver for ISDB-S/ISDB-T.
5 * Copyright (c) 2018 Socionext Inc.
11 #include <media/dvb_frontend.h>
13 /* ISDB-T IF frequency */
14 #define DIRECT_IF_57MHZ 57000000
15 #define DIRECT_IF_44MHZ 44000000
16 #define LOW_IF_4MHZ 4000000
18 struct mn88443x_config {
21 struct gpio_desc *reset_gpio;
23 /* Everything after that is returned by the driver. */
24 struct dvb_frontend **fe;
27 #endif /* MN88443X_H */