lib: Use __ASSEMBLER__ instead of __ASSEMBLY__Convert all non-x86 #ifdefs from __ASSEMBLY__ to __ASSEMBLER__, and removeall manual __ASSEMBLY__ #defines. __ASSEMBLY_ was inherited blindly fromth
lib: Use __ASSEMBLER__ instead of __ASSEMBLY__Convert all non-x86 #ifdefs from __ASSEMBLY__ to __ASSEMBLER__, and removeall manual __ASSEMBLY__ #defines. __ASSEMBLY_ was inherited blindly fromthe Linux kernel, and must be manually defined, e.g. through build rulesor with the aforementioned explicit #defines in assembly code.__ASSEMBLER__ on the other hand is automatically defined by the compilerwhen preprocessing assembly, i.e. doesn't require manually #defines forthe code to function correctly.Ignore x86, as x86 doesn't actually rely on __ASSEMBLY__ at the moment,and is undergoing a parallel cleanup.Signed-off-by: Sean Christopherson <seanjc@google.com>Reviewed-by: Andrew Jones <andrew.jones@linux.dev>Message-ID: <20250222014526.2302653-1-seanjc@google.com>[thuth: Fix three more occurances in libfdt.h and sbi-tests.h]Signed-off-by: Thomas Huth <thuth@redhat.com>
show more ...
libfdt: Pull v1.6.1This change updates the libfdt source files to v1.6.1 fromgit://git.kernel.org/pub/scm/utils/dtc/dtc.gitSigned-off-by: Andrew Jones <drjones@redhat.com>
libfdt: Pull v1.6.0This change updates the libfdt source files to v1.6.0 fromgit://git.kernel.org/pub/scm/utils/dtc/dtc.gitSigned-off-by: Nikos Nikoleris <nikos.nikoleris@arm.com>Signed-off-by:
libfdt: Pull v1.6.0This change updates the libfdt source files to v1.6.0 fromgit://git.kernel.org/pub/scm/utils/dtc/dtc.gitSigned-off-by: Nikos Nikoleris <nikos.nikoleris@arm.com>Signed-off-by: Andrew Jones <drjones@redhat.com>
libfdt: Import libfdt sourceThis adds the applicable libfdt source files (unmodified) and aREADME to explain where the source came from. The README says The code in this directory is originally
libfdt: Import libfdt sourceThis adds the applicable libfdt source files (unmodified) and aREADME to explain where the source came from. The README says The code in this directory is originally imported from the libfdt directory of git://git.jdl.com/software/dtc.git - version 1.4.0.Signed-off-by: Andrew Jones <drjones@redhat.com>Acked-by: Christoffer Dall <christoffer.dall@linaro.org>