diff options
Diffstat (limited to 'drivers/acpi/acpica/evmisc.c')
-rw-r--r-- | drivers/acpi/acpica/evmisc.c | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/drivers/acpi/acpica/evmisc.c b/drivers/acpi/acpica/evmisc.c index 84966f416463..51ef9f5e002d 100644 --- a/drivers/acpi/acpica/evmisc.c +++ b/drivers/acpi/acpica/evmisc.c | |||
@@ -108,27 +108,30 @@ acpi_ev_queue_notify_request(struct acpi_namespace_node * node, | |||
108 | ACPI_FUNCTION_NAME(ev_queue_notify_request); | 108 | ACPI_FUNCTION_NAME(ev_queue_notify_request); |
109 | 109 | ||
110 | /* | 110 | /* |
111 | * For value 3 (Ejection Request), some device method may need to be run. | 111 | * For value 0x03 (Ejection Request), may need to run a device method. |
112 | * For value 2 (Device Wake) if _PRW exists, the _PS0 method may need | 112 | * For value 0x02 (Device Wake), if _PRW exists, may need to run |
113 | * to be run. | 113 | * the _PS0 method. |
114 | * For value 0x80 (Status Change) on the power button or sleep button, | 114 | * For value 0x80 (Status Change) on the power button or sleep button, |
115 | * initiate soft-off or sleep operation? | 115 | * initiate soft-off or sleep operation. |
116 | * | ||
117 | * For all cases, simply dispatch the notify to the handler. | ||
116 | */ | 118 | */ |
117 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 119 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
118 | "Dispatching Notify on [%4.4s] Node %p Value 0x%2.2X (%s)\n", | 120 | "Dispatching Notify on [%4.4s] (%s) Value 0x%2.2X (%s) Node %p\n", |
119 | acpi_ut_get_node_name(node), node, notify_value, | 121 | acpi_ut_get_node_name(node), |
120 | acpi_ut_get_notify_name(notify_value))); | 122 | acpi_ut_get_type_name(node->type), notify_value, |
123 | acpi_ut_get_notify_name(notify_value), node)); | ||
121 | 124 | ||
122 | /* Get the notify object attached to the NS Node */ | 125 | /* Get the notify object attached to the NS Node */ |
123 | 126 | ||
124 | obj_desc = acpi_ns_get_attached_object(node); | 127 | obj_desc = acpi_ns_get_attached_object(node); |
125 | if (obj_desc) { | 128 | if (obj_desc) { |
126 | 129 | ||
127 | /* We have the notify object, Get the right handler */ | 130 | /* We have the notify object, Get the correct handler */ |
128 | 131 | ||
129 | switch (node->type) { | 132 | switch (node->type) { |
130 | 133 | ||
131 | /* Notify allowed only on these types */ | 134 | /* Notify is allowed only on these types */ |
132 | 135 | ||
133 | case ACPI_TYPE_DEVICE: | 136 | case ACPI_TYPE_DEVICE: |
134 | case ACPI_TYPE_THERMAL: | 137 | case ACPI_TYPE_THERMAL: |
@@ -152,7 +155,7 @@ acpi_ev_queue_notify_request(struct acpi_namespace_node * node, | |||
152 | } | 155 | } |
153 | 156 | ||
154 | /* | 157 | /* |
155 | * If there is any handler to run, schedule the dispatcher. | 158 | * If there is a handler to run, schedule the dispatcher. |
156 | * Check for: | 159 | * Check for: |
157 | * 1) Global system notify handler | 160 | * 1) Global system notify handler |
158 | * 2) Global device notify handler | 161 | * 2) Global device notify handler |
@@ -270,6 +273,7 @@ static void ACPI_SYSTEM_XFACE acpi_ev_notify_dispatch(void *context) | |||
270 | acpi_ut_delete_generic_state(notify_info); | 273 | acpi_ut_delete_generic_state(notify_info); |
271 | } | 274 | } |
272 | 275 | ||
276 | #if (!ACPI_REDUCED_HARDWARE) | ||
273 | /****************************************************************************** | 277 | /****************************************************************************** |
274 | * | 278 | * |
275 | * FUNCTION: acpi_ev_terminate | 279 | * FUNCTION: acpi_ev_terminate |
@@ -338,3 +342,5 @@ void acpi_ev_terminate(void) | |||
338 | } | 342 | } |
339 | return_VOID; | 343 | return_VOID; |
340 | } | 344 | } |
345 | |||
346 | #endif /* !ACPI_REDUCED_HARDWARE */ | ||