aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi')
-rw-r--r--drivers/acpi/video.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
index 87ae791781ab..c24a1d743257 100644
--- a/drivers/acpi/video.c
+++ b/drivers/acpi/video.c
@@ -1376,7 +1376,7 @@ static int acpi_video_bus_add_fs(struct acpi_device *device)
1376 entry->owner = THIS_MODULE; 1376 entry->owner = THIS_MODULE;
1377 1377
1378 /* 'POST' [R/W] */ 1378 /* 'POST' [R/W] */
1379 entry = create_proc_entry("POST", S_IFREG | S_IRUGO | S_IRUSR, 1379 entry = create_proc_entry("POST", S_IFREG | S_IRUGO | S_IWUSR,
1380 device_dir); 1380 device_dir);
1381 if (!entry) 1381 if (!entry)
1382 goto err_remove_post_info; 1382 goto err_remove_post_info;
@@ -1387,7 +1387,7 @@ static int acpi_video_bus_add_fs(struct acpi_device *device)
1387 entry->owner = THIS_MODULE; 1387 entry->owner = THIS_MODULE;
1388 1388
1389 /* 'DOS' [R/W] */ 1389 /* 'DOS' [R/W] */
1390 entry = create_proc_entry("DOS", S_IFREG | S_IRUGO | S_IRUSR, 1390 entry = create_proc_entry("DOS", S_IFREG | S_IRUGO | S_IWUSR,
1391 device_dir); 1391 device_dir);
1392 if (!entry) 1392 if (!entry)
1393 goto err_remove_post; 1393 goto err_remove_post;