Aargh. I really shouldn't do late night commits. Remove a floating point

multiply, and replace it with a close equivalent.  1.488 =~ 1.5
This commit is contained in:
Jonathan Lemon 2001-10-25 19:36:44 +00:00
parent 4f6434bdde
commit 208b417fd5

View File

@ -2117,7 +2117,7 @@ fxp_load_ucode(struct fxp_softc *sc)
memcpy(cbp->ucode, uc->ucode, uc->length);
if (uc->int_delay_offset)
*(u_short *)&cbp->ucode[uc->int_delay_offset] =
sc->tunable_int_delay * 1.4881;
sc->tunable_int_delay + sc->tunable_int_delay / 2;
if (uc->bundle_max_offset)
*(u_short *)&cbp->ucode[uc->bundle_max_offset] =
sc->tunable_bundle_max;