diff options
Diffstat (limited to 'cpu/mpc8xxx/ddr/ddr2_dimm_params.c')
-rw-r--r-- | cpu/mpc8xxx/ddr/ddr2_dimm_params.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mpc8xxx/ddr/ddr2_dimm_params.c b/cpu/mpc8xxx/ddr/ddr2_dimm_params.c index 06a8eb6..d9d0fa7 100644 --- a/cpu/mpc8xxx/ddr/ddr2_dimm_params.c +++ b/cpu/mpc8xxx/ddr/ddr2_dimm_params.c @@ -32,10 +32,10 @@ * 2 or 5 bits off and shifting them up to the top. * */ -static phys_size_t +static unsigned long long compute_ranksize(unsigned int mem_type, unsigned char row_dens) { - phys_size_t bsize; + unsigned long long bsize; /* Bottom 5 bits up to the top. */ bsize = ((row_dens >> 5) | ((row_dens & 31) << 3)); |