diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-08 01:09:08 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-08 01:09:08 +0000 |
commit | f08cb0a5897cd0121c4a1ff08442bbc6254eb860 (patch) | |
tree | 2b6466bf439844b419cd2c4a5fec723e54901acc /sys | |
parent | ded0b03534d1a54d36258ba5e00c11e7e527498c (diff) |
no , after last element in a enum
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/aacreg.h | 4 | ||||
-rw-r--r-- | sys/dev/isa/fdlink.h | 4 | ||||
-rw-r--r-- | sys/dev/usb/umidivar.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/ic/aacreg.h b/sys/dev/ic/aacreg.h index 21973b791dc..6ed608ddd21 100644 --- a/sys/dev/ic/aacreg.h +++ b/sys/dev/ic/aacreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: aacreg.h,v 1.3 2001/06/12 15:40:29 niklas Exp $ */ +/* $OpenBSD: aacreg.h,v 1.4 2002/09/08 01:09:07 deraadt Exp $ */ /*- * Copyright (c) 2000 Michael Smith @@ -146,7 +146,7 @@ typedef enum { CT_RAID10, /* stripe of mirror */ CT_RAID00, /* stripe of stripe */ CT_VOLUME_OF_MIRRORS, /* volume of mirror */ - CT_PSEUDO_RAID3, /* really raid4 */ + CT_PSEUDO_RAID3 /* really raid4 */ } AAC_FSAVolType; /* diff --git a/sys/dev/isa/fdlink.h b/sys/dev/isa/fdlink.h index cf970313e49..107a9fc1124 100644 --- a/sys/dev/isa/fdlink.h +++ b/sys/dev/isa/fdlink.h @@ -1,4 +1,4 @@ -/* $OpenBSD: fdlink.h,v 1.6 2002/03/14 01:26:56 millert Exp $ */ +/* $OpenBSD: fdlink.h,v 1.7 2002/09/08 01:09:07 deraadt Exp $ */ /*- * Copyright (c) 1993, 1994, 1995 Charles Hannum. @@ -64,7 +64,7 @@ enum fdc_state { DORECAL, RECALWAIT, RECALTIMEDOUT, - RECALCOMPLETE, + RECALCOMPLETE }; enum fdc_type { diff --git a/sys/dev/usb/umidivar.h b/sys/dev/usb/umidivar.h index f0298a2b64e..09052693c22 100644 --- a/sys/dev/usb/umidivar.h +++ b/sys/dev/usb/umidivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: umidivar.h,v 1.5 2002/07/25 04:07:33 nate Exp $ */ +/* $OpenBSD: umidivar.h,v 1.6 2002/09/08 01:09:07 deraadt Exp $ */ /* $NetBSD: umidivar.h,v 1.4 2002/07/11 21:14:32 augustss Exp $ */ /* * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -45,7 +45,7 @@ typedef enum { PS_NORMAL_2OF3=2, PS_NORMAL_1OF2=3, PS_EXCL_1=4, - PS_EXCL_2=5, + PS_EXCL_2=5 } packet_state_t; #define UMIDI_PACKET_SIZE 4 |