commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
32 lines
497 B
C
32 lines
497 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_C6X_LINKAGE_H
|
|
#define _ASM_C6X_LINKAGE_H
|
|
|
|
#ifdef __ASSEMBLER__
|
|
|
|
#define __ALIGN .align 2
|
|
#define __ALIGN_STR ".align 2"
|
|
|
|
#ifndef __DSBT__
|
|
#define ENTRY(name) \
|
|
.global name @ \
|
|
__ALIGN @ \
|
|
name:
|
|
#else
|
|
#define ENTRY(name) \
|
|
.global name @ \
|
|
.hidden name @ \
|
|
__ALIGN @ \
|
|
name:
|
|
#endif
|
|
|
|
#define ENDPROC(name) \
|
|
.type name, @function @ \
|
|
.size name, . - name
|
|
|
|
#endif
|
|
|
|
#include <asm-generic/linkage.h>
|
|
|
|
#endif /* _ASM_C6X_LINKAGE_H */
|