diff options
Diffstat (limited to 'net/irda/irproc.c')
-rw-r--r-- | net/irda/irproc.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/net/irda/irproc.c b/net/irda/irproc.c index 8ff1861649e8..318766e5dbdf 100644 --- a/net/irda/irproc.c +++ b/net/irda/irproc.c | |||
@@ -34,21 +34,21 @@ | |||
34 | #include <net/irda/irlap.h> | 34 | #include <net/irda/irlap.h> |
35 | #include <net/irda/irlmp.h> | 35 | #include <net/irda/irlmp.h> |
36 | 36 | ||
37 | extern struct file_operations discovery_seq_fops; | 37 | extern const struct file_operations discovery_seq_fops; |
38 | extern struct file_operations irlap_seq_fops; | 38 | extern const struct file_operations irlap_seq_fops; |
39 | extern struct file_operations irlmp_seq_fops; | 39 | extern const struct file_operations irlmp_seq_fops; |
40 | extern struct file_operations irttp_seq_fops; | 40 | extern const struct file_operations irttp_seq_fops; |
41 | extern struct file_operations irias_seq_fops; | 41 | extern const struct file_operations irias_seq_fops; |
42 | 42 | ||
43 | struct irda_entry { | 43 | struct irda_entry { |
44 | const char *name; | 44 | const char *name; |
45 | struct file_operations *fops; | 45 | const struct file_operations *fops; |
46 | }; | 46 | }; |
47 | 47 | ||
48 | struct proc_dir_entry *proc_irda; | 48 | struct proc_dir_entry *proc_irda; |
49 | EXPORT_SYMBOL(proc_irda); | 49 | EXPORT_SYMBOL(proc_irda); |
50 | 50 | ||
51 | static struct irda_entry irda_dirs[] = { | 51 | static const struct irda_entry irda_dirs[] = { |
52 | {"discovery", &discovery_seq_fops}, | 52 | {"discovery", &discovery_seq_fops}, |
53 | {"irttp", &irttp_seq_fops}, | 53 | {"irttp", &irttp_seq_fops}, |
54 | {"irlmp", &irlmp_seq_fops}, | 54 | {"irlmp", &irlmp_seq_fops}, |