1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-13 14:40:22 +00:00

sis_miibus_writereg() was checking for SIS_TYPE_900 and phy != 0 twice

due to a small cut & paste-o on my part. It happens this didn't hurt
anything, but it's still wrong.
This commit is contained in:
Bill Paul 2000-07-14 05:30:48 +00:00
parent 11c2252a1f
commit c5e8fc022f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=63103

View File

@ -425,9 +425,6 @@ static int sis_miibus_writereg(dev, phy, reg, data)
return(0);
}
if (sc->sis_type == SIS_TYPE_900 && phy != 0)
return(0);
if (sc->sis_type == SIS_TYPE_900 && phy != 0)
return(0);