diff options
Diffstat (limited to 'drivers/net/wireless/airo.c')
-rw-r--r-- | drivers/net/wireless/airo.c | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/drivers/net/wireless/airo.c b/drivers/net/wireless/airo.c index 5a56502c4eb0..a36e7870b03e 100644 --- a/drivers/net/wireless/airo.c +++ b/drivers/net/wireless/airo.c | |||
@@ -4418,21 +4418,24 @@ static const struct file_operations proc_statsdelta_ops = { | |||
4418 | .owner = THIS_MODULE, | 4418 | .owner = THIS_MODULE, |
4419 | .read = proc_read, | 4419 | .read = proc_read, |
4420 | .open = proc_statsdelta_open, | 4420 | .open = proc_statsdelta_open, |
4421 | .release = proc_close | 4421 | .release = proc_close, |
4422 | .llseek = default_llseek, | ||
4422 | }; | 4423 | }; |
4423 | 4424 | ||
4424 | static const struct file_operations proc_stats_ops = { | 4425 | static const struct file_operations proc_stats_ops = { |
4425 | .owner = THIS_MODULE, | 4426 | .owner = THIS_MODULE, |
4426 | .read = proc_read, | 4427 | .read = proc_read, |
4427 | .open = proc_stats_open, | 4428 | .open = proc_stats_open, |
4428 | .release = proc_close | 4429 | .release = proc_close, |
4430 | .llseek = default_llseek, | ||
4429 | }; | 4431 | }; |
4430 | 4432 | ||
4431 | static const struct file_operations proc_status_ops = { | 4433 | static const struct file_operations proc_status_ops = { |
4432 | .owner = THIS_MODULE, | 4434 | .owner = THIS_MODULE, |
4433 | .read = proc_read, | 4435 | .read = proc_read, |
4434 | .open = proc_status_open, | 4436 | .open = proc_status_open, |
4435 | .release = proc_close | 4437 | .release = proc_close, |
4438 | .llseek = default_llseek, | ||
4436 | }; | 4439 | }; |
4437 | 4440 | ||
4438 | static const struct file_operations proc_SSID_ops = { | 4441 | static const struct file_operations proc_SSID_ops = { |
@@ -4440,7 +4443,8 @@ static const struct file_operations proc_SSID_ops = { | |||
4440 | .read = proc_read, | 4443 | .read = proc_read, |
4441 | .write = proc_write, | 4444 | .write = proc_write, |
4442 | .open = proc_SSID_open, | 4445 | .open = proc_SSID_open, |
4443 | .release = proc_close | 4446 | .release = proc_close, |
4447 | .llseek = default_llseek, | ||
4444 | }; | 4448 | }; |
4445 | 4449 | ||
4446 | static const struct file_operations proc_BSSList_ops = { | 4450 | static const struct file_operations proc_BSSList_ops = { |
@@ -4448,7 +4452,8 @@ static const struct file_operations proc_BSSList_ops = { | |||
4448 | .read = proc_read, | 4452 | .read = proc_read, |
4449 | .write = proc_write, | 4453 | .write = proc_write, |
4450 | .open = proc_BSSList_open, | 4454 | .open = proc_BSSList_open, |
4451 | .release = proc_close | 4455 | .release = proc_close, |
4456 | .llseek = default_llseek, | ||
4452 | }; | 4457 | }; |
4453 | 4458 | ||
4454 | static const struct file_operations proc_APList_ops = { | 4459 | static const struct file_operations proc_APList_ops = { |
@@ -4456,7 +4461,8 @@ static const struct file_operations proc_APList_ops = { | |||
4456 | .read = proc_read, | 4461 | .read = proc_read, |
4457 | .write = proc_write, | 4462 | .write = proc_write, |
4458 | .open = proc_APList_open, | 4463 | .open = proc_APList_open, |
4459 | .release = proc_close | 4464 | .release = proc_close, |
4465 | .llseek = default_llseek, | ||
4460 | }; | 4466 | }; |
4461 | 4467 | ||
4462 | static const struct file_operations proc_config_ops = { | 4468 | static const struct file_operations proc_config_ops = { |
@@ -4464,7 +4470,8 @@ static const struct file_operations proc_config_ops = { | |||
4464 | .read = proc_read, | 4470 | .read = proc_read, |
4465 | .write = proc_write, | 4471 | .write = proc_write, |
4466 | .open = proc_config_open, | 4472 | .open = proc_config_open, |
4467 | .release = proc_close | 4473 | .release = proc_close, |
4474 | .llseek = default_llseek, | ||
4468 | }; | 4475 | }; |
4469 | 4476 | ||
4470 | static const struct file_operations proc_wepkey_ops = { | 4477 | static const struct file_operations proc_wepkey_ops = { |
@@ -4472,7 +4479,8 @@ static const struct file_operations proc_wepkey_ops = { | |||
4472 | .read = proc_read, | 4479 | .read = proc_read, |
4473 | .write = proc_write, | 4480 | .write = proc_write, |
4474 | .open = proc_wepkey_open, | 4481 | .open = proc_wepkey_open, |
4475 | .release = proc_close | 4482 | .release = proc_close, |
4483 | .llseek = default_llseek, | ||
4476 | }; | 4484 | }; |
4477 | 4485 | ||
4478 | static struct proc_dir_entry *airo_entry; | 4486 | static struct proc_dir_entry *airo_entry; |