* Patch by Stephen Williams, 19 March 2004

Increase speed of sector reads from SystemACE,
  shorten poll timeout and remove a useless reset

* Patch by Tolunay Orkun, 19 Mar 2004:
  Make GigE PHY 1000Mbps Speed/Duplex detection conditional
  (CONFIG_PHY_GIGE)

* Patch by Brad Kemp, 18 Mar 2004:
  prevent machine checks during a PCI scan

* Patch by Pierre Aubert, 18 Mar 2004:
  Fix string cleaning in IDE identification
This commit is contained in:
wdenk 2004-03-23 23:20:24 +00:00
parent eeb1b77b7d
commit 6fb6af6dc9
7 changed files with 23 additions and 7 deletions

View file

@ -1417,7 +1417,7 @@ static void ident_cpy (unsigned char *dst, unsigned char *src, unsigned int len)
unsigned char *end, *last;
last = dst;
end = src + len;
end = src + len - 1;
/* reserve space for '\0' */
if (len < 2)