diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-01-14 20:50:50 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-01-14 20:50:50 +0000 |
commit | 1e98c85d3254b46ed8d216477a5adf8580834616 (patch) | |
tree | c7808266b235b44443cbe152cb637731c588561b /sys/arch/mvmeppc/dev/cpu.c | |
parent | f6626fb981dd9d4254dfc7db5c4ca0d5a8d551bd (diff) |
Do not fill more than the first three fields of cfdriver structures unless
necessary. No functional change.
Diffstat (limited to 'sys/arch/mvmeppc/dev/cpu.c')
-rw-r--r-- | sys/arch/mvmeppc/dev/cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvmeppc/dev/cpu.c b/sys/arch/mvmeppc/dev/cpu.c index 9e41aafbb8d..9dea046353e 100644 --- a/sys/arch/mvmeppc/dev/cpu.c +++ b/sys/arch/mvmeppc/dev/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.6 2003/05/11 19:41:11 deraadt Exp $ */ +/* $OpenBSD: cpu.c,v 1.7 2004/01/14 20:50:49 miod Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -52,7 +52,7 @@ struct cfattach cpu_ca = { sizeof(struct device), cpumatch, cpuattach }; struct cfdriver cpu_cd = { - NULL, "cpu", DV_DULL, NULL, 0 + NULL, "cpu", DV_DULL }; static int |