diff options
| author | 2002-03-21 17:37:57 +0000 | |
|---|---|---|
| committer | 2002-03-21 17:37:57 +0000 | |
| commit | 61986e28246329f427e08854fc49f553ea66c6c8 (patch) | |
| tree | b077e2af078b787d756690b87d6e2f21d04f78d4 | |
| parent | Recognize 7455 processor, distinguish between 7450/7451. (diff) | |
| download | wireguard-openbsd-61986e28246329f427e08854fc49f553ea66c6c8.tar.xz wireguard-openbsd-61986e28246329f427e08854fc49f553ea66c6c8.zip | |
dont forget the break.
| -rw-r--r-- | sys/arch/macppc/macppc/cpu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/macppc/macppc/cpu.c b/sys/arch/macppc/macppc/cpu.c index 3d4562cab2f..ba87ca34cc0 100644 --- a/sys/arch/macppc/macppc/cpu.c +++ b/sys/arch/macppc/macppc/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.3 2002/03/21 17:37:11 drahn Exp $ */ +/* $OpenBSD: cpu.c,v 1.4 2002/03/21 17:37:57 drahn Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -140,6 +140,7 @@ cpuattach(parent, dev, aux) } else { sprintf(cpu_model, "7451"); } + break; case MPC7455: sprintf(cpu_model, "7455"); break; |
