acrn-config: skip the DRHDn_IGNORE when no device scope
Skip to generate DRHDn_IGNORE to board.c, when there is no device scope type on target platform DRHD definition. Tracked-On: #3854 Signed-off-by: Wei Liu <weix.w.liu@intel.com> Acked-by: Victor Sun <victor.sun@intel.com>
This commit is contained in:
parent
40929efe4b
commit
1e2333647e
|
@ -63,7 +63,8 @@ def gen_dmar_structure(config):
|
|||
print("\t\t.segment = DRHD{}_SEGMENT,".format(i_drhd_cnt), file=config)
|
||||
print("\t\t.flags = DRHD{}_FLAGS,".format(i_drhd_cnt), file=config)
|
||||
print("\t\t.reg_base_addr = DRHD{}_REG_BASE,".format(i_drhd_cnt), file=config)
|
||||
print("\t\t.ignore = DRHD{}_IGNORE,".format(i_drhd_cnt), file=config)
|
||||
if dev_cnt != 0:
|
||||
print("\t\t.ignore = DRHD{}_IGNORE,".format(i_drhd_cnt), file=config)
|
||||
print("\t\t.devices = drhd{}_dev_scope".format(i_drhd_cnt), file=config)
|
||||
print("\t},", file=config)
|
||||
|
||||
|
|
Loading…
Reference in New Issue