/* FRV per-CPU frame pointer holder1*2* Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.3* Written by David Howells ([email protected])4*5* This program is free software; you can redistribute it and/or6* modify it under the terms of the GNU General Public License7* as published by the Free Software Foundation; either version8* 2 of the License, or (at your option) any later version.9*/1011#ifndef _ASM_IRQ_REGS_H12#define _ASM_IRQ_REGS_H1314/*15* Per-cpu current frame pointer - the location of the last exception frame on16* the stack17* - on FRV, GR28 is dedicated to keeping a pointer to the current exception18* frame19*/20#define ARCH_HAS_OWN_IRQ_REGS2122#ifndef __ASSEMBLY__23#define get_irq_regs() (__frame)24#endif2526#endif /* _ASM_IRQ_REGS_H */272829