diff options
Diffstat (limited to 'post/cpu/ppc4xx/fpu.c')
| -rw-r--r-- | post/cpu/ppc4xx/fpu.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/post/cpu/ppc4xx/fpu.c b/post/cpu/ppc4xx/fpu.c index c2eb4a9bf..0c26fe00e 100644 --- a/post/cpu/ppc4xx/fpu.c +++ b/post/cpu/ppc4xx/fpu.c @@ -29,15 +29,15 @@  #if defined(CONFIG_440EP) || \      defined(CONFIG_440EPX) -#include <ppc4xx.h>  #include <asm/processor.h> +#include <ppc4xx.h>  int fpu_status(void)  {  	if (mfspr(ccr0) & CCR0_DAPUIB)  		return 0; /* Disabled */ -	else  +	else  		return 1; /* Enabled */  } |