am: fix typo in fw loading (#10080)

This commit is contained in:
nimlgen
2025-04-28 09:45:00 +03:00
committed by GitHub
parent e996584685
commit 68e5ab8552
+1 -1
View File
@@ -407,7 +407,7 @@ class AM_PSP(AM_IP):
def _prep_msg1(self, data):
self.adev.vram.view(self.msg1_paddr, len(data))[:] = data
self.adev.vram[self.msg1_paddr + len(data) + 1] = 0
self.adev.vram[self.msg1_paddr + len(data)] = 0
self.adev.gmc.flush_hdp()
def _bootloader_load_component(self, fw, compid):