]> xenbits.xensource.com Git - xen.git/commitdiff
xen/arm64: cache: Use the generic xen/linkage.h macros
authorEdgar E. Iglesias <edgar.iglesias@amd.com>
Sat, 4 May 2024 11:55:13 +0000 (13:55 +0200)
committerJulien Grall <jgrall@amazon.com>
Thu, 16 May 2024 21:06:01 +0000 (22:06 +0100)
Use the generic xen/linkage.h macros to annotate code symbols.

Signed-off-by: Edgar E. Iglesias <edgar.iglesias@amd.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
xen/arch/arm/arm64/cache.S

index 9a88a2b49731f2196cae99112bc3b5b33548c179..66ed85f7350388f736adbc74a5d481c5446163f6 100644 (file)
@@ -40,7 +40,7 @@
  *     - kaddr   - kernel address
  *     - size    - size in question
  */
-ENTRY(__flush_dcache_area)
+FUNC(__flush_dcache_area)
        dcache_line_size x2, x3
        add     x1, x0, x1
        sub     x3, x2, #1
@@ -51,4 +51,4 @@ ENTRY(__flush_dcache_area)
        b.lo    1b
        dsb     sy
        ret
-ENDPROC(__flush_dcache_area)
+END(__flush_dcache_area)