Add missing crom_next() in the previous revision.

This commit is contained in:
Hidetoshi Shimokawa 2003-04-29 23:40:04 +00:00
parent e97c58c8cf
commit 45800373db

View File

@ -642,9 +642,11 @@ sbp_probe_lun(struct sbp_dev *sdev)
crom_next(cc);
crom_parse_text(cc, sdev->vendor, sizeof(sdev->vendor));
/* skip to the unit directory for SBP-2 */
while ((reg = crom_search_key(cc, CSRKEY_VER)) != NULL)
while ((reg = crom_search_key(cc, CSRKEY_VER)) != NULL) {
if (reg->val == CSRVAL_T10SBP2)
break;
crom_next(cc);
}
/* get firmware revision */
reg = crom_search_key(cc, CSRKEY_FIRM_VER);
if (reg != NULL)