Remove leftover debug output.

This commit is contained in:
Søren Schmidt 2004-06-30 09:22:47 +00:00
parent 476e01e0cc
commit 3e3807252b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=131322

View File

@ -1358,14 +1358,14 @@ ar_lsi_read_conf(struct ad_softc *adp, struct ar_softc **raidp)
if (ar_rw(adp, LSI_LBA(adp), sizeof(struct lsi_raid_conf),
(caddr_t)info, AR_READ | AR_WAIT)) {
if (1 || bootverbose)
if (bootverbose)
printf("ar: LSI read conf failed\n");
goto lsi_out;
}
/* check if this is a LSI RAID struct */
if (strncmp(info->lsi_id, LSI_MAGIC, strlen(LSI_MAGIC))) {
if (1 || bootverbose)
if (bootverbose)
printf("ar: LSI check1 failed\n");
goto lsi_out;
}