diff --git a/sys/i386/isa/aha1542.c b/sys/i386/isa/aha1542.c index 9301518d5a4a..db400b55c9a7 100644 --- a/sys/i386/isa/aha1542.c +++ b/sys/i386/isa/aha1542.c @@ -12,7 +12,7 @@ * on the understanding that TFS is not responsible for the correct * functioning of this software in any circumstances. * - * $Id: aha1542.c,v 1.28 1994/08/13 03:49:52 wollman Exp $ + * $Id: aha1542.c,v 1.29 1994/08/14 21:06:00 ats Exp $ */ /* @@ -327,7 +327,7 @@ struct scsi_adapter aha_switch = 0, aha_adapter_info, "aha", - 0, 0 + { 0, 0 } }; /* the below structure is so we have a default dev struct for out link struct */ @@ -339,7 +339,7 @@ struct scsi_device aha_dev = NULL, /* Use default 'done' routine */ "aha", 0, - 0, 0 + { 0, 0 } }; struct isa_driver ahadriver = diff --git a/sys/i386/isa/bt742a.c b/sys/i386/isa/bt742a.c index 0759b89e917f..c0477347a237 100644 --- a/sys/i386/isa/bt742a.c +++ b/sys/i386/isa/bt742a.c @@ -12,7 +12,7 @@ * on the understanding that TFS is not responsible for the correct * functioning of this software in any circumstances. * - * $Id: bt742a.c,v 1.17 1994/05/27 04:02:01 rgrimes Exp $ + * $Id: bt742a.c,v 1.18 1994/08/13 03:49:55 wollman Exp $ */ /* @@ -371,7 +371,7 @@ struct scsi_adapter bt_switch = 0, bt_adapter_info, "bt", - 0, 0 + { 0, 0 } }; /* the below structure is so we have a default dev struct for out link struct */ @@ -383,7 +383,7 @@ struct scsi_device bt_dev = NULL, /* Use default 'done' routine */ "bt", 0, - 0, 0 + { 0, 0 } }; #endif /*KERNEL */ diff --git a/sys/i386/isa/ultra14f.c b/sys/i386/isa/ultra14f.c index a89eeca3b213..3a9346153019 100644 --- a/sys/i386/isa/ultra14f.c +++ b/sys/i386/isa/ultra14f.c @@ -19,7 +19,7 @@ * commenced: Sun Sep 27 18:14:01 PDT 1992 * slight mod to make work with 34F as well: Wed Jun 2 18:05:48 WST 1993 * - * $Id: ultra14f.c,v 1.19 1994/05/27 04:02:08 rgrimes Exp $ + * $Id: ultra14f.c,v 1.20 1994/08/13 03:50:17 wollman Exp $ */ #include @@ -277,7 +277,7 @@ struct scsi_adapter uha_switch = 0, uha_adapter_info, "uha", - 0, 0 + { 0, 0 } }; /* the below structure is so we have a default dev struct for out link struct */ @@ -289,7 +289,7 @@ struct scsi_device uha_dev = NULL, /* Use default 'done' routine */ "uha", 0, - 0, 0 + { 0, 0 } }; #endif /*KERNEL */