#include <linux/module.h>
#include <linux/init.h>
#include <linux/ioport.h>
#include <linux/delay.h>
#include <linux/videodev2.h>
#include <linux/io.h>
#include <linux/slab.h>
#include <media/v4l2-device.h>
#include <media/v4l2-ioctl.h>
#include <media/v4l2-ctrls.h>
#include "radio-isa.h"
#include "lm7000.h"
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;
MODULE_VERSION(…) …;
#ifndef CONFIG_RADIO_AZTECH_PORT
#define CONFIG_RADIO_AZTECH_PORT …
#endif
#define AZTECH_MAX …
static int io[AZTECH_MAX] = …;
static int radio_nr[AZTECH_MAX] = …;
module_param_array(…);
MODULE_PARM_DESC(…) …;
module_param_array(…);
MODULE_PARM_DESC(…) …;
struct aztech { … };
#define AZTECH_BIT_NOT_TUNED …
#define AZTECH_BIT_MONO …
#define AZTECH_BIT_TUN_CE …
#define AZTECH_BIT_TUN_CLK …
#define AZTECH_BIT_TUN_DATA …
static void aztech_set_pins(void *handle, u8 pins)
{ … }
static struct radio_isa_card *aztech_alloc(void)
{ … }
static int aztech_s_frequency(struct radio_isa_card *isa, u32 freq)
{ … }
static u32 aztech_g_rxsubchans(struct radio_isa_card *isa)
{ … }
static u32 aztech_g_signal(struct radio_isa_card *isa)
{ … }
static int aztech_s_mute_volume(struct radio_isa_card *isa, bool mute, int vol)
{ … }
static const struct radio_isa_ops aztech_ops = …;
static const int aztech_ioports[] = …;
static struct radio_isa_driver aztech_driver = …;
static int __init aztech_init(void)
{ … }
static void __exit aztech_exit(void)
{ … }
module_init(…) …;
module_exit(aztech_exit);