|
@@ -31,15 +31,17 @@
|
|
|
#include <linux/module.h> /* Modules */
|
|
|
#include <linux/init.h> /* Initdata */
|
|
|
#include <linux/ioport.h> /* request_region */
|
|
|
-#include <linux/version.h> /* for KERNEL_VERSION MACRO */
|
|
|
#include <linux/videodev2.h> /* kernel radio structs */
|
|
|
#include <linux/io.h> /* outb, outb_p */
|
|
|
#include <media/v4l2-device.h>
|
|
|
#include <media/v4l2-ioctl.h>
|
|
|
|
|
|
+#define DRIVER_VERSION "0.1.2"
|
|
|
+
|
|
|
MODULE_AUTHOR("Dr. Henrik Seidel");
|
|
|
MODULE_DESCRIPTION("A driver for the Typhoon radio card (a.k.a. EcoRadio).");
|
|
|
MODULE_LICENSE("GPL");
|
|
|
+MODULE_VERSION(DRIVER_VERSION);
|
|
|
|
|
|
#ifndef CONFIG_RADIO_TYPHOON_PORT
|
|
|
#define CONFIG_RADIO_TYPHOON_PORT -1
|
|
@@ -61,9 +63,7 @@ static unsigned long mutefreq = CONFIG_RADIO_TYPHOON_MUTEFREQ;
|
|
|
module_param(mutefreq, ulong, 0);
|
|
|
MODULE_PARM_DESC(mutefreq, "Frequency used when muting the card (in kHz)");
|
|
|
|
|
|
-#define RADIO_VERSION KERNEL_VERSION(0, 1, 1)
|
|
|
-
|
|
|
-#define BANNER "Typhoon Radio Card driver v0.1.1\n"
|
|
|
+#define BANNER "Typhoon Radio Card driver v" DRIVER_VERSION "\n"
|
|
|
|
|
|
struct typhoon {
|
|
|
struct v4l2_device v4l2_dev;
|
|
@@ -171,7 +171,6 @@ static int vidioc_querycap(struct file *file, void *priv,
|
|
|
strlcpy(v->driver, "radio-typhoon", sizeof(v->driver));
|
|
|
strlcpy(v->card, "Typhoon Radio", sizeof(v->card));
|
|
|
strlcpy(v->bus_info, "ISA", sizeof(v->bus_info));
|
|
|
- v->version = RADIO_VERSION;
|
|
|
v->capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO;
|
|
|
return 0;
|
|
|
}
|