patch-2.3.29 linux/drivers/scsi/aic7xxx_proc.c
Next file: linux/drivers/scsi/aic7xxx_seq.c
Previous file: linux/drivers/scsi/aic7xxx.c
Back to the patch index
Back to the overall index
- Lines: 27
- Date:
Thu Nov 18 21:13:47 1999
- Orig file:
v2.3.28/linux/drivers/scsi/aic7xxx_proc.c
- Orig date:
Wed Jun 30 11:24:54 1999
diff -u --recursive --new-file v2.3.28/linux/drivers/scsi/aic7xxx_proc.c linux/drivers/scsi/aic7xxx_proc.c
@@ -224,6 +224,11 @@
{
size += sprintf(BLS, " BIOS Memory Address: 0x%08x\n", p->bios_address);
}
+ if( p->chip & AHC_PCI )
+ {
+ size += sprintf(BLS, " PCI Bus 0x%02x Device 0x%02x\n", p->pci_bus,
+ p->pci_device_fn);
+ }
size += sprintf(BLS, " Adapter SEEPROM Config: %s\n",
(p->flags & AHC_SEEPROM_FOUND) ? "SEEPROM found and used." :
((p->flags & AHC_USEDEFAULTS) ? "SEEPROM not found, using defaults." :
@@ -373,11 +378,9 @@
}
else
{
- *start = &aic7xxx_buffer[offset]; /* Start of wanted data */
- if (size - offset < length)
- {
- length = size - offset;
- }
+ *start = buffer;
+ length = MIN(length, size - offset);
+ memcpy(buffer, &aic7xxx_buffer[offset], length);
}
return (length);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)