/* SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __RADIO_TEA5777_H #define __RADIO_TEA5777_H /* * v4l2 driver for TEA5777 Philips AM/FM radio tuner chips * * Copyright (c) 2012 Hans de Goede <[email protected]> * * Based on the ALSA driver for TEA5757/5759 Philips AM/FM radio tuner chips: * * Copyright (c) 2004 Jaroslav Kysela <[email protected]> * Copyright (c) 2012 Hans de Goede <[email protected]> */ #include <linux/videodev2.h> #include <media/v4l2-ctrls.h> #include <media/v4l2-dev.h> #include <media/v4l2-device.h> #define TEA575X_FMIF … #define TEA575X_AMIF … struct radio_tea5777; struct radio_tea5777_ops { … }; struct radio_tea5777 { … }; int radio_tea5777_init(struct radio_tea5777 *tea, struct module *owner); void radio_tea5777_exit(struct radio_tea5777 *tea); int radio_tea5777_set_freq(struct radio_tea5777 *tea); #endif /* __RADIO_TEA5777_H */