diff options
author | Pavel Machek <pavel@suze.cz> | 2005-08-05 00:37:45 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-08-05 00:38:58 -0400 |
commit | c65ade4dc8b486e8c8b9b0a6399789a5428e2039 (patch) | |
tree | b12aa0cce89523e67e9c5a74343e195c797636d5 /drivers/acpi/event.c | |
parent | 1d492eb41371d9a5145651e8eb64bea1042a4057 (diff) |
[ACPI] whitespace
Signed-off-by: Pavel Machek <pavel@suse.cz>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/event.c')
-rw-r--r-- | drivers/acpi/event.c | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/drivers/acpi/event.c b/drivers/acpi/event.c index 43c49f66a328..ce8d3eec3911 100644 --- a/drivers/acpi/event.c +++ b/drivers/acpi/event.c | |||
@@ -24,27 +24,23 @@ extern wait_queue_head_t acpi_bus_event_queue; | |||
24 | static int | 24 | static int |
25 | acpi_system_open_event(struct inode *inode, struct file *file) | 25 | acpi_system_open_event(struct inode *inode, struct file *file) |
26 | { | 26 | { |
27 | spin_lock_irq (&acpi_system_event_lock); | 27 | spin_lock_irq(&acpi_system_event_lock); |
28 | 28 | ||
29 | if(event_is_open) | 29 | if (event_is_open) |
30 | goto out_busy; | 30 | goto out_busy; |
31 | 31 | ||
32 | event_is_open = 1; | 32 | event_is_open = 1; |
33 | 33 | ||
34 | spin_unlock_irq (&acpi_system_event_lock); | 34 | spin_unlock_irq(&acpi_system_event_lock); |
35 | return 0; | 35 | return 0; |
36 | 36 | ||
37 | out_busy: | 37 | out_busy: |
38 | spin_unlock_irq (&acpi_system_event_lock); | 38 | spin_unlock_irq(&acpi_system_event_lock); |
39 | return -EBUSY; | 39 | return -EBUSY; |
40 | } | 40 | } |
41 | 41 | ||
42 | static ssize_t | 42 | static ssize_t |
43 | acpi_system_read_event ( | 43 | acpi_system_read_event(struct file *file, char __user *buffer, size_t count, loff_t *ppos) |
44 | struct file *file, | ||
45 | char __user *buffer, | ||
46 | size_t count, | ||
47 | loff_t *ppos) | ||
48 | { | 44 | { |
49 | int result = 0; | 45 | int result = 0; |
50 | struct acpi_bus_event event; | 46 | struct acpi_bus_event event; |
@@ -98,9 +94,7 @@ acpi_system_close_event(struct inode *inode, struct file *file) | |||
98 | } | 94 | } |
99 | 95 | ||
100 | static unsigned int | 96 | static unsigned int |
101 | acpi_system_poll_event( | 97 | acpi_system_poll_event(struct file *file, poll_table *wait) |
102 | struct file *file, | ||
103 | poll_table *wait) | ||
104 | { | 98 | { |
105 | poll_wait(file, &acpi_bus_event_queue, wait); | 99 | poll_wait(file, &acpi_bus_event_queue, wait); |
106 | if (!list_empty(&acpi_bus_event_list)) | 100 | if (!list_empty(&acpi_bus_event_list)) |