diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-01-22 14:51:11 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-02-01 17:35:04 -0500 |
commit | 0b3f5fe673d4626ea91816ca9c486b43b39a2fd1 (patch) | |
tree | 56a7ccf80894b01d739ae2774c455700df674d86 /drivers/usb/misc | |
parent | a1cd7e99b343543af2be4c8c5755e26f6bfd725a (diff) |
USB: constify function pointer tables
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/misc')
-rw-r--r-- | drivers/usb/misc/iowarrior.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/misc/iowarrior.c b/drivers/usb/misc/iowarrior.c index 764696ff1e8e..801070502cc1 100644 --- a/drivers/usb/misc/iowarrior.c +++ b/drivers/usb/misc/iowarrior.c | |||
@@ -715,7 +715,7 @@ static unsigned iowarrior_poll(struct file *file, poll_table * wait) | |||
715 | * would use "struct net_driver" instead, and a serial | 715 | * would use "struct net_driver" instead, and a serial |
716 | * device would use "struct tty_driver". | 716 | * device would use "struct tty_driver". |
717 | */ | 717 | */ |
718 | static struct file_operations iowarrior_fops = { | 718 | static const struct file_operations iowarrior_fops = { |
719 | .owner = THIS_MODULE, | 719 | .owner = THIS_MODULE, |
720 | .write = iowarrior_write, | 720 | .write = iowarrior_write, |
721 | .read = iowarrior_read, | 721 | .read = iowarrior_read, |