Fix missing variable initialization

Fixed #60
This commit is contained in:
Hoang Hong Quan
2024-11-17 19:57:13 +07:00
parent 63fe5bf532
commit 49c3335187
+2 -2
View File
@@ -1043,8 +1043,8 @@ DefinitionBlock ("", "SSDT", 2, "ZPSS", "HPET", 0x00000000)
if x.get("crs"): if x.get("crs"):
val += "{} _CRS to XCRS".format(" and " if val else x["dev_name"]) val += "{} _CRS to XCRS".format(" and " if val else x["dev_name"])
if val: suffix.append(val) if val: suffix.append(val)
if suffix: #if suffix:
comment += " - Requires {} Rename".format(", ".join(suffix)) # comment += " - Requires {} Rename".format(", ".join(suffix))
# At this point - we need to do the following: # At this point - we need to do the following:
# 1. Change STAS if needed # 1. Change STAS if needed
# 2. Setup _STA with _OSI and call XSTA if needed # 2. Setup _STA with _OSI and call XSTA if needed