diff options
Diffstat (limited to 'drivers/parisc')
-rw-r--r-- | drivers/parisc/ccio-dma.c | 4 | ||||
-rw-r--r-- | drivers/parisc/eisa.c | 1 | ||||
-rw-r--r-- | drivers/parisc/eisa_eeprom.c | 2 | ||||
-rw-r--r-- | drivers/parisc/led.c | 2 | ||||
-rw-r--r-- | drivers/parisc/sba_iommu.c | 4 |
5 files changed, 5 insertions, 8 deletions
diff --git a/drivers/parisc/ccio-dma.c b/drivers/parisc/ccio-dma.c index fe3f5f5365c5..894fdb9d44c0 100644 --- a/drivers/parisc/ccio-dma.c +++ b/drivers/parisc/ccio-dma.c | |||
@@ -1091,7 +1091,7 @@ static int ccio_proc_info_open(struct inode *inode, struct file *file) | |||
1091 | return single_open(file, &ccio_proc_info, NULL); | 1091 | return single_open(file, &ccio_proc_info, NULL); |
1092 | } | 1092 | } |
1093 | 1093 | ||
1094 | static struct file_operations ccio_proc_info_fops = { | 1094 | static const struct file_operations ccio_proc_info_fops = { |
1095 | .owner = THIS_MODULE, | 1095 | .owner = THIS_MODULE, |
1096 | .open = ccio_proc_info_open, | 1096 | .open = ccio_proc_info_open, |
1097 | .read = seq_read, | 1097 | .read = seq_read, |
@@ -1127,7 +1127,7 @@ static int ccio_proc_bitmap_open(struct inode *inode, struct file *file) | |||
1127 | return single_open(file, &ccio_proc_bitmap_info, NULL); | 1127 | return single_open(file, &ccio_proc_bitmap_info, NULL); |
1128 | } | 1128 | } |
1129 | 1129 | ||
1130 | static struct file_operations ccio_proc_bitmap_fops = { | 1130 | static const struct file_operations ccio_proc_bitmap_fops = { |
1131 | .owner = THIS_MODULE, | 1131 | .owner = THIS_MODULE, |
1132 | .open = ccio_proc_bitmap_open, | 1132 | .open = ccio_proc_bitmap_open, |
1133 | .read = seq_read, | 1133 | .read = seq_read, |
diff --git a/drivers/parisc/eisa.c b/drivers/parisc/eisa.c index e97cecbc4d18..309076b39853 100644 --- a/drivers/parisc/eisa.c +++ b/drivers/parisc/eisa.c | |||
@@ -33,7 +33,6 @@ | |||
33 | #include <linux/kernel.h> | 33 | #include <linux/kernel.h> |
34 | #include <linux/module.h> | 34 | #include <linux/module.h> |
35 | #include <linux/pci.h> | 35 | #include <linux/pci.h> |
36 | #include <linux/sched.h> | ||
37 | #include <linux/spinlock.h> | 36 | #include <linux/spinlock.h> |
38 | #include <linux/eisa.h> | 37 | #include <linux/eisa.h> |
39 | 38 | ||
diff --git a/drivers/parisc/eisa_eeprom.c b/drivers/parisc/eisa_eeprom.c index e13aafa70bf5..86e9c84a965e 100644 --- a/drivers/parisc/eisa_eeprom.c +++ b/drivers/parisc/eisa_eeprom.c | |||
@@ -97,7 +97,7 @@ static int eisa_eeprom_release(struct inode *inode, struct file *file) | |||
97 | /* | 97 | /* |
98 | * The various file operations we support. | 98 | * The various file operations we support. |
99 | */ | 99 | */ |
100 | static struct file_operations eisa_eeprom_fops = { | 100 | static const struct file_operations eisa_eeprom_fops = { |
101 | .owner = THIS_MODULE, | 101 | .owner = THIS_MODULE, |
102 | .llseek = eisa_eeprom_llseek, | 102 | .llseek = eisa_eeprom_llseek, |
103 | .read = eisa_eeprom_read, | 103 | .read = eisa_eeprom_read, |
diff --git a/drivers/parisc/led.c b/drivers/parisc/led.c index a415d9b1c715..d190c05d87ed 100644 --- a/drivers/parisc/led.c +++ b/drivers/parisc/led.c | |||
@@ -252,7 +252,6 @@ static int __init led_create_procfs(void) | |||
252 | proc_pdc_root->owner = THIS_MODULE; | 252 | proc_pdc_root->owner = THIS_MODULE; |
253 | ent = create_proc_entry("led", S_IFREG|S_IRUGO|S_IWUSR, proc_pdc_root); | 253 | ent = create_proc_entry("led", S_IFREG|S_IRUGO|S_IWUSR, proc_pdc_root); |
254 | if (!ent) return -1; | 254 | if (!ent) return -1; |
255 | ent->nlink = 1; | ||
256 | ent->data = (void *)LED_NOLCD; /* LED */ | 255 | ent->data = (void *)LED_NOLCD; /* LED */ |
257 | ent->read_proc = led_proc_read; | 256 | ent->read_proc = led_proc_read; |
258 | ent->write_proc = led_proc_write; | 257 | ent->write_proc = led_proc_write; |
@@ -262,7 +261,6 @@ static int __init led_create_procfs(void) | |||
262 | { | 261 | { |
263 | ent = create_proc_entry("lcd", S_IFREG|S_IRUGO|S_IWUSR, proc_pdc_root); | 262 | ent = create_proc_entry("lcd", S_IFREG|S_IRUGO|S_IWUSR, proc_pdc_root); |
264 | if (!ent) return -1; | 263 | if (!ent) return -1; |
265 | ent->nlink = 1; | ||
266 | ent->data = (void *)LED_HASLCD; /* LCD */ | 264 | ent->data = (void *)LED_HASLCD; /* LCD */ |
267 | ent->read_proc = led_proc_read; | 265 | ent->read_proc = led_proc_read; |
268 | ent->write_proc = led_proc_write; | 266 | ent->write_proc = led_proc_write; |
diff --git a/drivers/parisc/sba_iommu.c b/drivers/parisc/sba_iommu.c index 26fece45e737..322957ac2ad1 100644 --- a/drivers/parisc/sba_iommu.c +++ b/drivers/parisc/sba_iommu.c | |||
@@ -1799,7 +1799,7 @@ sba_proc_open(struct inode *i, struct file *f) | |||
1799 | return single_open(f, &sba_proc_info, NULL); | 1799 | return single_open(f, &sba_proc_info, NULL); |
1800 | } | 1800 | } |
1801 | 1801 | ||
1802 | static struct file_operations sba_proc_fops = { | 1802 | static const struct file_operations sba_proc_fops = { |
1803 | .owner = THIS_MODULE, | 1803 | .owner = THIS_MODULE, |
1804 | .open = sba_proc_open, | 1804 | .open = sba_proc_open, |
1805 | .read = seq_read, | 1805 | .read = seq_read, |
@@ -1831,7 +1831,7 @@ sba_proc_bitmap_open(struct inode *i, struct file *f) | |||
1831 | return single_open(f, &sba_proc_bitmap_info, NULL); | 1831 | return single_open(f, &sba_proc_bitmap_info, NULL); |
1832 | } | 1832 | } |
1833 | 1833 | ||
1834 | static struct file_operations sba_proc_bitmap_fops = { | 1834 | static const struct file_operations sba_proc_bitmap_fops = { |
1835 | .owner = THIS_MODULE, | 1835 | .owner = THIS_MODULE, |
1836 | .open = sba_proc_bitmap_open, | 1836 | .open = sba_proc_bitmap_open, |
1837 | .read = seq_read, | 1837 | .read = seq_read, |