Path: blob/master/arch/unicore32/include/asm/suspend.h
10818 views
/*1* linux/arch/unicore32/include/asm/suspend.h2*3* Code specific to PKUnity SoC and UniCore ISA4*5* Copyright (C) 2001-2010 GUAN Xue-tao6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License version 2 as9* published by the Free Software Foundation.10*/1112#ifndef __UNICORE_SUSPEND_H__13#define __UNICORE_SUSPEND_H__1415#ifndef __ASSEMBLY__1617#include <asm/ptrace.h>1819struct swsusp_arch_regs {20struct cpu_context_save cpu_context; /* cpu context */21#ifdef CONFIG_UNICORE_FPU_F6422struct fp_state fpstate __attribute__((aligned(8)));23#endif24};25#endif2627#endif /* __UNICORE_SUSPEND_H__ */28293031