USB: Make file operations structs in drivers/usb const.
Making structs const prevents accidental bugs and with the proper debug options they're protected against corruption. Signed-off-by: Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
f2ebf92c9e
commit
066202dd48
@@ -62,7 +62,7 @@ static int mon_stat_release(struct inode *inode, struct file *file)
|
||||
return 0;
|
||||
}
|
||||
|
||||
struct file_operations mon_fops_stat = {
|
||||
const struct file_operations mon_fops_stat = {
|
||||
.owner = THIS_MODULE,
|
||||
.open = mon_stat_open,
|
||||
.llseek = no_llseek,
|
||||
|
||||
@@ -435,7 +435,7 @@ static int mon_text_release(struct inode *inode, struct file *file)
|
||||
return 0;
|
||||
}
|
||||
|
||||
struct file_operations mon_fops_text = {
|
||||
const struct file_operations mon_fops_text = {
|
||||
.owner = THIS_MODULE,
|
||||
.open = mon_text_open,
|
||||
.llseek = no_llseek,
|
||||
|
||||
@@ -53,7 +53,7 @@ extern char mon_dmapeek(unsigned char *dst, dma_addr_t dma_addr, int len);
|
||||
|
||||
extern struct mutex mon_lock;
|
||||
|
||||
extern struct file_operations mon_fops_text;
|
||||
extern struct file_operations mon_fops_stat;
|
||||
extern const struct file_operations mon_fops_text;
|
||||
extern const struct file_operations mon_fops_stat;
|
||||
|
||||
#endif /* __USB_MON_H */
|
||||
|
||||
Reference in New Issue
Block a user