Lines Matching refs:mem
23 static int mem = 8192; variable
25 module_param(mem, int, 0);
26 MODULE_PARM_DESC(mem, "Memory size reserved for dualhead (default=8MB)");
611 if (mem < 64) in matroxfb_dh_regit()
612 mem *= 1024; in matroxfb_dh_regit()
613 if (mem < 64*1024) in matroxfb_dh_regit()
614 mem *= 1024; in matroxfb_dh_regit()
615 mem &= ~0x00000FFF; /* PAGE_MASK? */ in matroxfb_dh_regit()
616 if (minfo->video.len_usable + mem <= minfo->video.len) in matroxfb_dh_regit()
617 m2info->video.offbase = minfo->video.len - mem; in matroxfb_dh_regit()
618 else if (minfo->video.len < mem) { in matroxfb_dh_regit()
621 m2info->video.borrowed = mem; in matroxfb_dh_regit()
622 minfo->video.len_usable -= mem; in matroxfb_dh_regit()
626 m2info->video.len = m2info->video.len_usable = m2info->video.len_maximum = mem; in matroxfb_dh_regit()