Actually get all the bits for sd_hibase.. it was 16 bits short. oops.

Approved by:	re (amd64/* blanket)
This commit is contained in:
Peter Wemm 2003-05-17 02:05:10 +00:00
parent 433087977a
commit 5c0fe26236

View File

@ -722,7 +722,7 @@ ssdtosyssd(ssd, sd)
{
sd->sd_lobase = (ssd->ssd_base) & 0xffffff;
sd->sd_hibase = (ssd->ssd_base >> 24) & 0xffffff;
sd->sd_hibase = (ssd->ssd_base >> 24) & 0xfffffffffful;
sd->sd_lolimit = (ssd->ssd_limit) & 0xffff;
sd->sd_hilimit = (ssd->ssd_limit >> 16) & 0xf;
sd->sd_type = ssd->ssd_type;