diff options
Diffstat (limited to 'cpu/mpc8260/cpu.c')
| -rw-r--r-- | cpu/mpc8260/cpu.c | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/cpu/mpc8260/cpu.c b/cpu/mpc8260/cpu.c index 2a1c0e13f..8adf950f9 100644 --- a/cpu/mpc8260/cpu.c +++ b/cpu/mpc8260/cpu.c @@ -36,7 +36,7 @@   * added 8260 masks by   * Marius Groeger <mag@sysgo.de>   * - * added HiP7 (8270/8275/8280) processors support by + * added HiP7 (824x/827x/8280) processors support by   * Yuli Barcohen <yuli@arabellasw.com>   */ @@ -129,6 +129,10 @@ int checkcpu (void)  	case 0x0A01:  		puts ("0.1 1K49M");  		break; +	case 0x0C00: +	case 0x0D00: +		printf ("0.0 0K50M"); +		break;  	default:  		printf ("unknown [immr=0x%04x,k=0x%04x]", m, k);  		break; |