/* MN10300 FPU management1*2* Copyright (C) 2007 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 Licence7* as published by the Free Software Foundation; either version8* 2 of the Licence, or (at your option) any later version.9*/10#include <asm/fpu.h>1112/*13* handle an FPU operational exception14* - there's a possibility that if the FPU is asynchronous, the signal might15* be meant for a process other than the current one16*/17asmlinkage18void unexpected_fpu_exception(struct pt_regs *regs, enum exception_code code)19{20panic("An FPU exception was received, but there's no FPU enabled.");21}2223/*24* fill in the FPU structure for a core dump25*/26int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpreg)27{28return 0; /* not valid */29}303132