diff options
author | se <se@FreeBSD.org> | 1997-07-29 21:50:04 +0000 |
---|---|---|
committer | se <se@FreeBSD.org> | 1997-07-29 21:50:04 +0000 |
commit | 3d5f1848a6e8db38e37ab66ff08059ca90797aba (patch) | |
tree | b7da532db20ac13615acd7864ba4a3945a213d1e /sys/pci | |
parent | 7c05b47fb0d9799175ba86702275988032e8d6f4 (diff) | |
download | FreeBSD-src-3d5f1848a6e8db38e37ab66ff08059ca90797aba.zip FreeBSD-src-3d5f1848a6e8db38e37ab66ff08059ca90797aba.tar.gz |
Fix problem caused by a chunk of the previous patch having been
applied to the wrong source code lines (non-fatal, since it just
made an auto variable become visible at the global level).
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/ncr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/pci/ncr.c b/sys/pci/ncr.c index 1a0a1e81..0891a05 100644 --- a/sys/pci/ncr.c +++ b/sys/pci/ncr.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: ncr.c,v 1.100 1997/07/25 20:45:05 se Exp $ +** $Id: ncr.c,v 1.101 1997/07/28 21:32:05 se Exp $ ** ** Device driver for the NCR 53C810 PCI-SCSI-Controller. ** @@ -1350,7 +1350,7 @@ static void ncr_attach (pcici_t tag, int unit); static char ident[] = - "\n$Id: ncr.c,v 1.100 1997/07/25 20:45:05 se Exp $\n"; + "\n$Id: ncr.c,v 1.101 1997/07/28 21:32:05 se Exp $\n"; static const u_long ncr_version = NCR_VERSION * 11 + (u_long) sizeof (struct ncb) * 7 @@ -6215,10 +6215,10 @@ static int ncr_show_msg (u_char * msg) }; return (1); } - u_char scntl3; void ncr_int_sir (ncb_p np) { + u_char scntl3; u_char chg, ofs, per, fak, wide; u_char num = INB (nc_dsps); ccb_p cp=0; |