Deleted Added
full compact
ncr.c (111119) ncr.c (113506)
1/**************************************************************************
2**
1/**************************************************************************
2**
3** $FreeBSD: head/sys/pci/ncr.c 111119 2003-02-19 05:47:46Z imp $
3** $FreeBSD: head/sys/pci/ncr.c 113506 2003-04-15 06:37:30Z mdodd $
4**
5** Device driver for the NCR 53C8XX PCI-SCSI-Controller Family.
6**
7**-------------------------------------------------------------------------
8**
9** Written for 386bsd and FreeBSD by
10** Wolfgang Stanglmeier <wolf@cologne.de>
11** Stefan Esser <se@mi.Uni-Koeln.de>

--- 1289 unchanged lines hidden (view full) ---

1301**
1302**
1303**==========================================================
1304*/
1305
1306
1307#if !defined(lint)
1308static const char ident[] =
4**
5** Device driver for the NCR 53C8XX PCI-SCSI-Controller Family.
6**
7**-------------------------------------------------------------------------
8**
9** Written for 386bsd and FreeBSD by
10** Wolfgang Stanglmeier <wolf@cologne.de>
11** Stefan Esser <se@mi.Uni-Koeln.de>

--- 1289 unchanged lines hidden (view full) ---

1301**
1302**
1303**==========================================================
1304*/
1305
1306
1307#if !defined(lint)
1308static const char ident[] =
1309 "\n$FreeBSD: head/sys/pci/ncr.c 111119 2003-02-19 05:47:46Z imp $\n";
1309 "\n$FreeBSD: head/sys/pci/ncr.c 113506 2003-04-15 06:37:30Z mdodd $\n";
1310#endif
1311
1312static const u_long ncr_version = NCR_VERSION * 11
1313 + (u_long) sizeof (struct ncb) * 7
1314 + (u_long) sizeof (struct nccb) * 5
1315 + (u_long) sizeof (struct lcb) * 3
1316 + (u_long) sizeof (struct tcb) * 2;
1317

--- 5834 unchanged lines hidden (view full) ---

7152static driver_t ncr_driver = {
7153 "ncr",
7154 ncr_methods,
7155 sizeof(struct ncb),
7156};
7157
7158static devclass_t ncr_devclass;
7159
1310#endif
1311
1312static const u_long ncr_version = NCR_VERSION * 11
1313 + (u_long) sizeof (struct ncb) * 7
1314 + (u_long) sizeof (struct nccb) * 5
1315 + (u_long) sizeof (struct lcb) * 3
1316 + (u_long) sizeof (struct tcb) * 2;
1317

--- 5834 unchanged lines hidden (view full) ---

7152static driver_t ncr_driver = {
7153 "ncr",
7154 ncr_methods,
7155 sizeof(struct ncb),
7156};
7157
7158static devclass_t ncr_devclass;
7159
7160DRIVER_MODULE(if_ncr, pci, ncr_driver, ncr_devclass, 0, 0);
7160DRIVER_MODULE(ncr, pci, ncr_driver, ncr_devclass, 0, 0);
7161MODULE_DEPEND(ncr, pci, 1, 1, 1);
7161
7162/*=========================================================================*/
7163#endif /* _KERNEL */
7162
7163/*=========================================================================*/
7164#endif /* _KERNEL */