diff options
| author | Matt Jacob <mjacob@FreeBSD.org> | 2002-10-11 17:28:01 +0000 |
|---|---|---|
| committer | Matt Jacob <mjacob@FreeBSD.org> | 2002-10-11 17:28:01 +0000 |
| commit | f556e83b61289003cc0f212487c3eb3f5fd03bd2 (patch) | |
| tree | b409a9507b8133ed92029731c0294ac4694612a8 /sys/dev/isp/isp.c | |
| parent | 306a2090245980d3724fe6fdbd95dfdc787f0b64 (diff) | |
Notes
Diffstat (limited to 'sys/dev/isp/isp.c')
| -rw-r--r-- | sys/dev/isp/isp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index c755e1ed8e35c..a9435560842df 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -284,6 +284,8 @@ isp_reset(struct ispsoftc *isp) btype = "1280"; else if (IS_1080(isp)) btype = "1080"; + else if (IS_10160(isp)) + btype = "10160"; else if (IS_12160(isp)) btype = "12160"; else @@ -5895,7 +5897,8 @@ isp_read_nvram(struct ispsoftc *isp) if (IS_ULTRA3(isp)) { isp_parse_nvram_12160(isp, 0, nvram_data); - isp_parse_nvram_12160(isp, 1, nvram_data); + if (IS_12160(isp)) + isp_parse_nvram_12160(isp, 1, nvram_data); } else if (IS_1080(isp)) { isp_parse_nvram_1080(isp, 0, nvram_data); } else if (IS_1280(isp) || IS_1240(isp)) { |
