/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Silicon Labs Si2168 DVB-T/T2/C demodulator driver * * Copyright (C) 2014 Antti Palosaari <[email protected]> */ #ifndef SI2168_PRIV_H #define SI2168_PRIV_H #include "si2168.h" #include <media/dvb_frontend.h> #include <linux/firmware.h> #include <linux/i2c-mux.h> #include <linux/kernel.h> #define SI2168_A20_FIRMWARE … #define SI2168_A30_FIRMWARE … #define SI2168_B40_FIRMWARE … #define SI2168_D60_FIRMWARE … /* state struct */ struct si2168_dev { … }; /* firmware command struct */ #define SI2168_ARGLEN … struct si2168_cmd { … }; #endif