V4L/DVB: staging/lirc: CodingStyle cleanups
authorMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 27 Jul 2010 21:44:45 +0000 (18:44 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 2 Aug 2010 19:43:35 +0000 (16:43 -0300)
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/staging/lirc/lirc_bt829.c
drivers/staging/lirc/lirc_imon.c
drivers/staging/lirc/lirc_it87.c
drivers/staging/lirc/lirc_parallel.c
drivers/staging/lirc/lirc_sasem.c
drivers/staging/lirc/lirc_serial.c
drivers/staging/lirc/lirc_sir.c
drivers/staging/lirc/lirc_streamzap.c
drivers/staging/lirc/lirc_ttusbir.c
drivers/staging/lirc/lirc_zilog.c

index d0f34b5..3388102 100644 (file)
@@ -77,7 +77,7 @@ static struct pci_dev *do_pci_probe(void)
                pci_addr_phys = 0;
                if (my_dev->resource[0].flags & IORESOURCE_MEM) {
                        pci_addr_phys = my_dev->resource[0].start;
-                       printk(KERN_INFO DRIVER_NAME ": memory at 0x%08X \n",
+                       printk(KERN_INFO DRIVER_NAME ": memory at 0x%08X\n",
                               (unsigned int)pci_addr_phys);
                }
                if (pci_addr_phys == 0) {
index 43856d6..6649325 100644 (file)
@@ -111,7 +111,7 @@ struct imon_context {
        } tx;
 };
 
-static struct file_operations display_fops = {
+static const struct file_operations display_fops = {
        .owner          = THIS_MODULE,
        .open           = &display_open,
        .write          = &vfd_write,
index 781abc3..09f3696 100644 (file)
@@ -329,7 +329,7 @@ static void add_read_queue(int flag, unsigned long val)
 }
 
 
-static struct file_operations lirc_fops = {
+static const struct file_operations lirc_fops = {
        .owner          = THIS_MODULE,
        .read           = lirc_read,
        .write          = lirc_write,
index df12e7b..a1ebd07 100644 (file)
@@ -539,7 +539,7 @@ static int lirc_close(struct inode *node, struct file *filep)
        return 0;
 }
 
-static struct file_operations lirc_fops = {
+static const struct file_operations lirc_fops = {
        .owner          = THIS_MODULE,
        .llseek         = lirc_lseek,
        .read           = lirc_read,
index 9e516a1..73166c3 100644 (file)
@@ -119,7 +119,7 @@ struct sasem_context {
 };
 
 /* VFD file operations */
-static struct file_operations vfd_fops = {
+static const struct file_operations vfd_fops = {
        .owner          = THIS_MODULE,
        .open           = &vfd_open,
        .write          = &vfd_write,
index d2ea3f0..9456f8e 100644 (file)
@@ -1050,7 +1050,7 @@ static long lirc_ioctl(struct file *filep, unsigned int cmd, unsigned long arg)
        return 0;
 }
 
-static struct file_operations lirc_fops = {
+static const struct file_operations lirc_fops = {
        .owner          = THIS_MODULE,
        .write          = lirc_write,
        .unlocked_ioctl = lirc_ioctl,
index 97146d1..eb08fa7 100644 (file)
@@ -451,7 +451,7 @@ static void add_read_queue(int flag, unsigned long val)
        wake_up_interruptible(&lirc_read_queue);
 }
 
-static struct file_operations lirc_fops = {
+static const struct file_operations lirc_fops = {
        .owner          = THIS_MODULE,
        .read           = lirc_read,
        .write          = lirc_write,
index 5b46ac4..be09c10 100644 (file)
@@ -431,7 +431,7 @@ static void usb_streamzap_irq(struct urb *urb)
        return;
 }
 
-static struct file_operations streamzap_fops = {
+static const struct file_operations streamzap_fops = {
        .owner          = THIS_MODULE,
        .unlocked_ioctl = streamzap_ioctl,
        .read           = lirc_dev_fop_read,
index 1f1da47..e345ab9 100644 (file)
@@ -141,8 +141,7 @@ static void set_use_dec(void *data)
  * still have about 14 samples per pulse/space, i.e. we sample with 14
  * times higher frequency than the signal frequency
  */
-const unsigned char map_table[] =
-{
+const unsigned char map_table[] = {
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
index 1b013bf..100caab 100644 (file)
@@ -1132,7 +1132,7 @@ static struct i2c_driver driver = {
        .id_table       = ir_transceiver_id,
 };
 
-static struct file_operations lirc_fops = {
+static const struct file_operations lirc_fops = {
        .owner          = THIS_MODULE,
        .llseek         = lseek,
        .read           = read,