Commit 047646bf authored by Steven Toth's avatar Steven Toth Committed by Mauro Carvalho Chehab

V4L/DVB (6159): General code cleanup

Removed if 0'd code, removed cx88 references.
Signed-off-by: default avatarSteven Toth <stoth@hauppauge.com>
Signed-off-by: default avatarMichael Krufky <mkrufky@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent fe475163
...@@ -1498,9 +1498,9 @@ static struct pci_driver cx23885_pci_driver = { ...@@ -1498,9 +1498,9 @@ static struct pci_driver cx23885_pci_driver = {
static int cx23885_init(void) static int cx23885_init(void)
{ {
printk(KERN_INFO "cx23885 driver version %d.%d.%d loaded\n", printk(KERN_INFO "cx23885 driver version %d.%d.%d loaded\n",
(CX88_VERSION_CODE >> 16) & 0xff, (CX23885_VERSION_CODE >> 16) & 0xff,
(CX88_VERSION_CODE >> 8) & 0xff, (CX23885_VERSION_CODE >> 8) & 0xff,
CX88_VERSION_CODE & 0xff); CX23885_VERSION_CODE & 0xff);
#ifdef SNAPSHOT #ifdef SNAPSHOT
printk(KERN_INFO "cx23885: snapshot date %04d-%02d-%02d\n", printk(KERN_INFO "cx23885: snapshot date %04d-%02d-%02d\n",
SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100); SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
#include <linux/version.h> #include <linux/version.h>
#include <linux/mutex.h> #include <linux/mutex.h>
#define CX88_VERSION_CODE KERNEL_VERSION(0,0,6) #define CX23885_VERSION_CODE KERNEL_VERSION(0,0,1)
#define UNSET (-1U) #define UNSET (-1U)
...@@ -69,14 +69,6 @@ enum cx23885_itype { ...@@ -69,14 +69,6 @@ enum cx23885_itype {
CX23885_RADIO, CX23885_RADIO,
}; };
struct cx23885_fmt {
char *name;
u32 fourcc; /* v4l2 format id */
int depth;
int flags;
u32 cxformat;
};
/* buffer for one video frame */ /* buffer for one video frame */
struct cx23885_buffer { struct cx23885_buffer {
/* common v4l buffer stuff -- must be first */ /* common v4l buffer stuff -- must be first */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment