On Mon, Jun 09, 2025 at 05:42:32PM +0530, Venkata Prasad Potturu wrote:Okay, Thanks Mark :).
This patch modifies the assignment of machine structure pointers in theIt's fine this time but these staticisiations should have been a
acp_pci_probe function. Previously, the machine pointers were assigned
using the address-of operator (&), which caused incompatibility issues
in type assignments.
Additionally, the declarations of the machine arrays in amd.h have been
updated to reflect that they are indeed arrays (`[]`). The code is
further cleaned up by declaring the codec structures in
amd-acpi-mach.c as static, reflecting their intended usage.
error: symbol 'amp_rt1019' was not declared. Should it be static?
error: symbol 'amp_max' was not declared. Should it be static?
separate commit since there's no overlap.