Eliminate a struct copy that gcc doesn't inline and ends up as a call to

memset().
This commit is contained in:
peter 1996-06-08 10:18:12 +00:00
parent 29f6977880
commit fb2da8f1bf
2 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHORS BE LIABLE.
*
* $Id: si.c,v 1.40 1996/05/08 04:48:25 peter Exp $
* $Id: si.c,v 1.41 1996/05/30 23:41:35 peter Exp $
*/
#ifndef lint
@ -267,7 +267,7 @@ si_registerdev(id)
struct isa_device *id;
{
if (id->id_unit != 0) {
si_kdc[id->id_unit] = si_kdc[0]; /* struct copy */
bcopy(&si_kdc[0], &si_kdc[id->id_unit], sizeof(si_kdc[0]));
}
si_kdc[id->id_unit].kdc_unit = id->id_unit;
si_kdc[id->id_unit].kdc_isa = id;

View File

@ -30,7 +30,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHORS BE LIABLE.
*
* $Id: si.c,v 1.40 1996/05/08 04:48:25 peter Exp $
* $Id: si.c,v 1.41 1996/05/30 23:41:35 peter Exp $
*/
#ifndef lint
@ -267,7 +267,7 @@ si_registerdev(id)
struct isa_device *id;
{
if (id->id_unit != 0) {
si_kdc[id->id_unit] = si_kdc[0]; /* struct copy */
bcopy(&si_kdc[0], &si_kdc[id->id_unit], sizeof(si_kdc[0]));
}
si_kdc[id->id_unit].kdc_unit = id->id_unit;
si_kdc[id->id_unit].kdc_isa = id;