ACPICA: iASL: Improved pathname support
For include files, merge the prefix pathname with the file pathname. Convert backslashes in all pathnames to forward slashes, for readability. Include file pathname changes affect both #include and Include() type operators. Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lin Ming <ming.m.lin@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
@@ -460,6 +460,8 @@ acpi_ut_short_divide(u64 in_dividend,
|
|||||||
/*
|
/*
|
||||||
* utmisc
|
* utmisc
|
||||||
*/
|
*/
|
||||||
|
void ut_convert_backslashes(char *pathname);
|
||||||
|
|
||||||
const char *acpi_ut_validate_exception(acpi_status status);
|
const char *acpi_ut_validate_exception(acpi_status status);
|
||||||
|
|
||||||
u8 acpi_ut_is_pci_root_bridge(char *id);
|
u8 acpi_ut_is_pci_root_bridge(char *id);
|
||||||
|
@@ -50,6 +50,34 @@
|
|||||||
#define _COMPONENT ACPI_UTILITIES
|
#define _COMPONENT ACPI_UTILITIES
|
||||||
ACPI_MODULE_NAME("utmisc")
|
ACPI_MODULE_NAME("utmisc")
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
*
|
||||||
|
* FUNCTION: ut_convert_backslashes
|
||||||
|
*
|
||||||
|
* PARAMETERS: Pathname - File pathname string to be converted
|
||||||
|
*
|
||||||
|
* RETURN: Modifies the input Pathname
|
||||||
|
*
|
||||||
|
* DESCRIPTION: Convert all backslashes (0x5C) to forward slashes (0x2F) within
|
||||||
|
* the entire input file pathname string.
|
||||||
|
*
|
||||||
|
******************************************************************************/
|
||||||
|
void ut_convert_backslashes(char *pathname)
|
||||||
|
{
|
||||||
|
|
||||||
|
if (!pathname) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
while (*pathname) {
|
||||||
|
if (*pathname == '\\') {
|
||||||
|
*pathname = '/';
|
||||||
|
}
|
||||||
|
|
||||||
|
pathname++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
*
|
*
|
||||||
* FUNCTION: acpi_ut_validate_exception
|
* FUNCTION: acpi_ut_validate_exception
|
||||||
@@ -63,6 +91,7 @@ ACPI_MODULE_NAME("utmisc")
|
|||||||
* an ASCII string.
|
* an ASCII string.
|
||||||
*
|
*
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
const char *acpi_ut_validate_exception(acpi_status status)
|
const char *acpi_ut_validate_exception(acpi_status status)
|
||||||
{
|
{
|
||||||
u32 sub_status;
|
u32 sub_status;
|
||||||
|
Reference in New Issue
Block a user