Skip to content

Commit

Permalink
Merge branch 'bugzilla-11917' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
Len Brown committed Nov 12, 2008
2 parents 50f19e3 + d21cf3c commit e911d27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/acpi/ec.c
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ static acpi_status
ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
{
acpi_status status;
unsigned long long tmp;
unsigned long long tmp = 0;

struct acpi_ec *ec = context;
status = acpi_walk_resources(handle, METHOD_NAME__CRS,
Expand All @@ -751,6 +751,7 @@ ec_parse_device(acpi_handle handle, u32 Level, void *context, void **retval)
return status;
ec->gpe = tmp;
/* Use the global lock for all EC transactions? */
tmp = 0;
acpi_evaluate_integer(handle, "_GLK", NULL, &tmp);
ec->global_lock = tmp;
ec->handle = handle;
Expand Down

0 comments on commit e911d27

Please sign in to comment.