Do not use ULL suffix. Cast to uint64_t where the suffix is needed,
and just remove it in another place. Requested by: bde Sponsored by: The FreeBSD Foundation MFC after: 1 week
This commit is contained in:
parent
28586889c2
commit
d360b49b1d
@ -260,7 +260,7 @@ x86_mrfetch(struct mem_range_softc *sc)
|
||||
|
||||
/* Compute the range from the mask. Ick. */
|
||||
mrd->mr_len = (~(msrv & mtrr_physmask) &
|
||||
(mtrr_physmask | 0xfffLL)) + 1;
|
||||
(mtrr_physmask | 0xfff)) + 1;
|
||||
if (!mrvalid(mrd->mr_base, mrd->mr_len))
|
||||
mrd->mr_flags |= MDF_BOGUS;
|
||||
|
||||
@ -638,7 +638,8 @@ x86_mrinit(struct mem_range_softc *sc)
|
||||
* Determine the size of the PhysMask and PhysBase fields in
|
||||
* the variable range MTRRs.
|
||||
*/
|
||||
mtrr_physmask = (((uint64_t)1 << cpu_maxphyaddr) - 1) & ~0xfffULL;
|
||||
mtrr_physmask = (((uint64_t)1 << cpu_maxphyaddr) - 1) &
|
||||
~(uint64_t)0xfff;
|
||||
|
||||
/* If fixed MTRRs supported and enabled. */
|
||||
if ((mtrrcap & MTRR_CAP_FIXED) && (mtrrdef & MTRR_DEF_FIXED_ENABLE)) {
|
||||
|
Loading…
Reference in New Issue
Block a user