diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2015-11-25 21:04:42 +0000 | 
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2015-11-25 21:04:42 +0000 | 
| commit | b9098066cd6284319bca922f13e59517f774a103 (patch) | |
| tree | f01fd6c9053cb01ed84c00cb42ee789adafceaf5 /source/components/namespace/nsinit.c | |
| parent | 1e24cf365bc9c8df179b145c90d52852724e54ee (diff) | |
Notes
Diffstat (limited to 'source/components/namespace/nsinit.c')
| -rw-r--r-- | source/components/namespace/nsinit.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/source/components/namespace/nsinit.c b/source/components/namespace/nsinit.c index c80d2c88255a..b2e2be324a0b 100644 --- a/source/components/namespace/nsinit.c +++ b/source/components/namespace/nsinit.c @@ -110,8 +110,8 @@ AcpiNsInitializeObjects (      /* Walk entire namespace from the supplied root */      Status = AcpiWalkNamespace (ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, -                ACPI_UINT32_MAX, AcpiNsInitOneObject, NULL, -                &Info, NULL); +        ACPI_UINT32_MAX, AcpiNsInitOneObject, NULL, +        &Info, NULL);      if (ACPI_FAILURE (Status))      {          ACPI_EXCEPTION ((AE_INFO, Status, "During WalkNamespace")); @@ -173,7 +173,7 @@ AcpiNsInitializeDevices (      /* Tree analysis: find all subtrees that contain _INI methods */      Status = AcpiNsWalkNamespace (ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, -                ACPI_UINT32_MAX, FALSE, AcpiNsFindIniMethods, NULL, &Info, NULL); +        ACPI_UINT32_MAX, FALSE, AcpiNsFindIniMethods, NULL, &Info, NULL);      if (ACPI_FAILURE (Status))      {          goto ErrorExit; @@ -207,7 +207,7 @@ AcpiNsInitializeDevices (      /* Walk namespace to execute all _INIs on present devices */      Status = AcpiNsWalkNamespace (ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, -                ACPI_UINT32_MAX, FALSE, AcpiNsInitOneDevice, NULL, &Info, NULL); +        ACPI_UINT32_MAX, FALSE, AcpiNsInitOneDevice, NULL, &Info, NULL);      /*       * Any _OSI requests should be completed by now. If the BIOS has @@ -631,7 +631,7 @@ AcpiNsInitOneDevice (      {          /* Ignore error and move on to next device */ -        char *ScopeName = AcpiNsGetExternalPathname (Info->Node); +        char *ScopeName = AcpiNsGetNormalizedPathname (DeviceNode, TRUE);          ACPI_EXCEPTION ((AE_INFO, Status, "during %s._INI execution",              ScopeName));  | 
