root/arch/unicore32/include/asm/linkage.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0-only */
   2 /*
   3  * linux/arch/unicore32/include/asm/linkage.h
   4  *
   5  * Code specific to PKUnity SoC and UniCore ISA
   6  *
   7  * Copyright (C) 2001-2010 GUAN Xue-tao
   8  */
   9 #ifndef __UNICORE_LINKAGE_H__
  10 #define __UNICORE_LINKAGE_H__
  11 
  12 #define __ALIGN .align 0
  13 #define __ALIGN_STR ".align 0"
  14 
  15 #define ENDPROC(name) \
  16         .type name, %function; \
  17         END(name)
  18 
  19 #endif

/* [<][>][^][v][top][bottom][index][help] */