fix: fix build with clang-17

Target triple `aarch64-none-eabi` was incorrect, but old versions of
clang accepted it anyway. clang-17 is stricter and does not accept it
(https://releases.llvm.org/17.0.1/tools/clang/docs/ReleaseNotes.html#arm-and-aarch64-support).
The correct replacement is `aarch64-none-elf`.

The local variable `struct ffa_partition_rxtx_header header` was
assigned a different address that was not aligned to 8 bytes by
clang-17, and so `memcpy_trapped` would fail. This is fixed by
annotating it with `alignas(8)`.

Fix new warnings from `clang-tidy`.

Ignore `misc-include-cleaner` warning from `clang-tidy`, because it
produces a lot of incorrect warnings.

Apply `make format`.

Change-Id: I605e23ce258de9bfd49d717ef5864292a30235e1
Signed-off-by: Karl Meakin <karl.meakin@arm.com>
diff --git a/inc/hf/bits.h b/inc/hf/bits.h
index 9b29979..a137b31 100644
--- a/inc/hf/bits.h
+++ b/inc/hf/bits.h
@@ -61,7 +61,7 @@
 /**
  * Isolate bits `[hi:lo]` of `value`.
  */
-#define GET_BITS(value, hi, lo) ((value)&GET_BITS_MASK(hi, lo))
+#define GET_BITS(value, hi, lo) ((value) & GET_BITS_MASK(hi, lo))
 
 /**
  * Return true if any bits `[lo:hi]` of `value` are 1.