diff options
| author | thorpej <thorpej@NetBSD.org> | 2001-07-08 23:56:03 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2001-07-08 23:56:03 +0000 |
| commit | 9d1d1b8a89cf5eca344e085ed5ccc2bbda3e0bec (patch) | |
| tree | 56675d80871bfbd3ba1128379683f143192f796b /sys/dev/arcbios | |
| parent | 72c860d841a9642baf1d30fc5958bbf0c72ce927 (diff) | |
Make the field names in the system ID structure match the spec.
Diffstat (limited to 'sys/dev/arcbios')
| -rw-r--r-- | sys/dev/arcbios/arcbios.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/arcbios/arcbios.h b/sys/dev/arcbios/arcbios.h index ab4030732c2..773addf7957 100644 --- a/sys/dev/arcbios/arcbios.h +++ b/sys/dev/arcbios/arcbios.h @@ -1,4 +1,4 @@ -/* $NetBSD: arcbios.h,v 1.1 2001/07/08 19:58:02 thorpej Exp $ */ +/* $NetBSD: arcbios.h,v 1.2 2001/07/08 23:56:03 thorpej Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -200,9 +200,10 @@ struct arcbios_component { /* * ARC system ID */ +#define ARCBIOS_SYSID_FIELDLEN 8 struct arcbios_sysid { - char Vendor[8]; - char Serial[8]; + char VendorId[ARCBIOS_SYSID_FIELDLEN]; + char ProductId[ARCBIOS_SYSID_FIELDLEN]; }; /* |
