mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
V4L/DVB: staging/lirc: CodingStyle cleanups
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
14f184e6d1
commit
0f9313ad06
10 changed files with 10 additions and 11 deletions
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue