V4L/DVB (4941): Remove LINUX_VERSION_CODE and fix identations

    
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
diff --git a/drivers/media/video/usbvision/usbvision-core.c b/drivers/media/video/usbvision/usbvision-core.c
index cf5d477..e660a91 100644
--- a/drivers/media/video/usbvision/usbvision-core.c
+++ b/drivers/media/video/usbvision/usbvision-core.c
@@ -47,8 +47,8 @@
 #include <media/tuner.h>
 #include <media/audiochip.h>
 
-	#include <linux/moduleparam.h>
-	#include <linux/workqueue.h>
+#include <linux/moduleparam.h>
+#include <linux/workqueue.h>
 
 #ifdef CONFIG_KMOD
 #include <linux/kmod.h>
@@ -1397,7 +1397,7 @@
  return totlen;
 }
 
-static void usbvision_isocIrq(struct urb *urb, struct pt_regs *regs)
+static void usbvision_isocIrq(struct urb *urb)
 {
 	int errCode = 0;
 	int len;
@@ -1529,7 +1529,7 @@
 }
 
 
-static void usbvision_ctrlUrb_complete(struct urb *urb, struct pt_regs *regs)
+static void usbvision_ctrlUrb_complete(struct urb *urb)
 {
 	struct usb_usbvision *usbvision = (struct usb_usbvision *)urb->context;
 
@@ -2416,11 +2416,7 @@
 		int j, k;
 		struct urb *urb;
 
-		#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
-			urb = usb_alloc_urb(USBVISION_URB_FRAMES);
-		#else
-			urb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
-		#endif
+		urb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
 		if (urb == NULL) {
 			err("%s: usb_alloc_urb() failed", __FUNCTION__);
 			return -ENOMEM;
@@ -2429,12 +2425,8 @@
 		urb->dev = dev;
 		urb->context = usbvision;
 		urb->pipe = usb_rcvisocpipe(dev, usbvision->video_endp);
-	#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
-		urb->transfer_flags = USB_ISO_ASAP;
-	#else
 		urb->transfer_flags = URB_ISO_ASAP;
 		urb->interval = 1;
-	#endif
 		urb->transfer_buffer = usbvision->sbuf[bufIdx].data;
 		urb->complete = usbvision_isocIrq;
 		urb->number_of_packets = USBVISION_URB_FRAMES;
@@ -2450,11 +2442,7 @@
 
 	/* Submit all URBs */
 	for (bufIdx = 0; bufIdx < USBVISION_NUMSBUF; bufIdx++) {
-		#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
-			errCode = usb_submit_urb(usbvision->sbuf[bufIdx].urb);
-		#else
 			errCode = usb_submit_urb(usbvision->sbuf[bufIdx].urb, GFP_KERNEL);
-		#endif
 		if (errCode) {
 			err("%s: usb_submit_urb(%d) failed: error %d", __FUNCTION__, bufIdx, errCode);
 		}
diff --git a/drivers/media/video/usbvision/usbvision-i2c.c b/drivers/media/video/usbvision/usbvision-i2c.c
index 2de74e4..92bf9a1 100644
--- a/drivers/media/video/usbvision/usbvision-i2c.c
+++ b/drivers/media/video/usbvision/usbvision-i2c.c
@@ -29,7 +29,7 @@
 #include <linux/delay.h>
 #include <linux/slab.h>
 #include <linux/version.h>
-	#include <linux/utsname.h>
+#include <linux/utsname.h>
 #include <linux/init.h>
 #include <asm/uaccess.h>
 #include <linux/ioport.h>
@@ -350,13 +350,9 @@
 {
 	struct usb_usbvision *usbvision;
 
-	#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,0)
-		usbvision = (struct usb_usbvision *)client->adapter->data;
-	#else
-		usbvision = (struct usb_usbvision *)i2c_get_adapdata(client->adapter);
-	#endif
+	usbvision = (struct usb_usbvision *)i2c_get_adapdata(client->adapter);
 
-		PDEBUG(DBG_I2C,"usbvision[%d] detaches %s", usbvision->nr, client->name);
+	PDEBUG(DBG_I2C,"usbvision[%d] detaches %s", usbvision->nr, client->name);
 	return 0;
 }
 
@@ -548,9 +544,9 @@
 	.algo_data         = NULL,
 	.client_register   = attach_inform,
 	.client_unregister = detach_inform,
-#if defined (I2C_ADAP_CLASS_TV_ANALOG)
+#ifdef I2C_ADAP_CLASS_TV_ANALOG
 	.class             = I2C_ADAP_CLASS_TV_ANALOG,
-#elif defined (I2C_CLASS_TV_ANALOG)
+#else
 	.class		   = I2C_CLASS_TV_ANALOG,
 #endif
 };
diff --git a/drivers/media/video/usbvision/usbvision-video.c b/drivers/media/video/usbvision/usbvision-video.c
index ab29ddb..1285b93 100644
--- a/drivers/media/video/usbvision/usbvision-video.c
+++ b/drivers/media/video/usbvision/usbvision-video.c
@@ -68,8 +68,8 @@
 #include <media/tuner.h>
 #include <media/audiochip.h>
 
-	#include <linux/moduleparam.h>
-	#include <linux/workqueue.h>
+#include <linux/moduleparam.h>
+#include <linux/workqueue.h>
 
 #ifdef CONFIG_KMOD
 #include <linux/kmod.h>
@@ -189,8 +189,8 @@
 MODULE_AUTHOR(DRIVER_AUTHOR);
 MODULE_DESCRIPTION(DRIVER_DESC);
 MODULE_LICENSE(DRIVER_LICENSE);
-	MODULE_VERSION(USBVISION_VERSION_STRING);
-	MODULE_ALIAS(DRIVER_ALIAS);
+MODULE_VERSION(USBVISION_VERSION_STRING);
+MODULE_ALIAS(DRIVER_ALIAS);
 
 
 /****************************************************************************************/
@@ -1430,9 +1430,7 @@
 
 // Video template
 static struct file_operations usbvision_fops = {
-  #if LINUX_VERSION_CODE > KERNEL_VERSION(2,4,31)
 	.owner             = THIS_MODULE,
-  #endif
 	.open		= usbvision_v4l2_open,
 	.release	= usbvision_v4l2_close,
 	.read		= usbvision_v4l2_read,
@@ -1441,25 +1439,19 @@
 	.llseek		= no_llseek,
 };
 static struct video_device usbvision_video_template = {
-  #if LINUX_VERSION_CODE > KERNEL_VERSION(2,4,31)
 	.owner             = THIS_MODULE,
-  #endif
 	.type		= VID_TYPE_TUNER | VID_TYPE_CAPTURE,
 	.hardware	= VID_HARDWARE_USBVISION,
 	.fops		= &usbvision_fops,
-  #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
 	.name           = "usbvision-video",
 	.release	= video_device_release,
-  #endif
 	.minor		= -1,
 };
 
 
 // Radio template
 static struct file_operations usbvision_radio_fops = {
-  #if LINUX_VERSION_CODE > KERNEL_VERSION(2,4,31)
 	.owner             = THIS_MODULE,
-  #endif
 	.open		= usbvision_radio_open,
 	.release	= usbvision_radio_close,
 	.ioctl		= usbvision_radio_ioctl,
@@ -1468,25 +1460,19 @@
 
 static struct video_device usbvision_radio_template=
 {
-  #if LINUX_VERSION_CODE > KERNEL_VERSION(2,4,31)
 	.owner             = THIS_MODULE,
-  #endif
 	.type		= VID_TYPE_TUNER,
 	.hardware	= VID_HARDWARE_USBVISION,
 	.fops		= &usbvision_radio_fops,
-  #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
 	.release	= video_device_release,
 	.name           = "usbvision-radio",
-  #endif
 	.minor		= -1,
 };
 
 
 // vbi template
 static struct file_operations usbvision_vbi_fops = {
-  #if LINUX_VERSION_CODE > KERNEL_VERSION(2,4,31)
 	.owner             = THIS_MODULE,
-  #endif
 	.open		= usbvision_vbi_open,
 	.release	= usbvision_vbi_close,
 	.ioctl		= usbvision_vbi_ioctl,
@@ -1495,16 +1481,12 @@
 
 static struct video_device usbvision_vbi_template=
 {
-  #if LINUX_VERSION_CODE > KERNEL_VERSION(2,4,31)
 	.owner             = THIS_MODULE,
-  #endif
 	.type		= VID_TYPE_TUNER,
 	.hardware	= VID_HARDWARE_USBVISION,
 	.fops		= &usbvision_vbi_fops,
-  #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
 	.release	= video_device_release,
 	.name           = "usbvision-vbi",
-  #endif
 	.minor		= -1,
 };