/*1* arch/arm/include/asm/glue.h2*3* Copyright (C) 1997-1999 Russell King4* Copyright (C) 2000-2002 Deep Blue Solutions Ltd.5*6* This program is free software; you can redistribute it and/or modify7* it under the terms of the GNU General Public License version 2 as8* published by the Free Software Foundation.9*10* This file provides the glue to stick the processor-specific bits11* into the kernel in an efficient manner. The idea is to use branches12* when we're only targeting one class of TLB, or indirect calls13* when we're targeting multiple classes of TLBs.14*/15#ifdef __KERNEL__1617#ifdef __STDC__18#define ____glue(name,fn) name##fn19#else20#define ____glue(name,fn) name/**/fn21#endif22#define __glue(name,fn) ____glue(name,fn)2324#endif252627