MFi386: part of 189421

- If there are no syscons hints at all, assume there is a single sc0 device
    anyway.  The console probe will still fail unless a VGA adapter is found.
This commit is contained in:
Yoshihiro Takahashi 2009-03-06 11:10:31 +00:00
parent 5171328bd6
commit c0a47fb480

View File

@ -203,8 +203,10 @@ sc_get_cons_priority(int *unit, int *flags)
*flags = f;
}
}
if (*unit < 0)
return CN_DEAD;
if (*unit < 0) {
*unit = 0;
*flags = 0;
}
return CN_INTERNAL;
}