Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d7ab4a4f authored by Aaro Koskinen's avatar Aaro Koskinen Committed by Greg Kroah-Hartman
Browse files

staging: xgifb: XGINew_SetDRAMDefaultRegister340: inline the value of SR1B



SR1B register value is always 3 regardless of video card or RAM type.

Signed-off-by: default avatarAaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 99c66181
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -507,9 +507,7 @@ static void XGINew_SetDRAMDefaultRegister340(
		xgifb_reg_set(P3d4, 0xB0, 0x80); /* DDRII Dual frequency mode */
		XGINew_DDR2_DefaultRegister(HwDeviceExtension, P3d4, pVBInfo);
	}
	xgifb_reg_set(P3c4,
		      0x1B,
		      pVBInfo->SR15[3][pVBInfo->ram_type]); /* SR1B */
	xgifb_reg_set(P3c4, 0x1B, 0x03); /* SR1B */
}


+2 −4
Original line number Diff line number Diff line
@@ -18,18 +18,16 @@ const struct XGI_ECLKDataStruct XGI340_ECLKData[] = {
	{0x7C, 0x08, 0x01, 200},
};

static const unsigned char XG27_SR13[4][3] = {
static const unsigned char XG27_SR13[3][3] = {
	{0x35, 0x45, 0xb1}, /* SR13 */
	{0x41, 0x51, 0x5c}, /* SR14 */
	{0x32, 0x32, 0x42}, /* SR18 */
	{0x03, 0x03, 0x03}  /* SR1B */
};

static const unsigned char XGI340_SR13[4][3] = {
static const unsigned char XGI340_SR13[3][3] = {
	{0x35, 0x45, 0xb1}, /* SR13 */
	{0x41, 0x51, 0x5c}, /* SR14 */
	{0x31, 0x42, 0x42}, /* SR18 */
	{0x03, 0x03, 0x03}  /* SR1B */
};

static const unsigned char XGI340_cr41[24][3] = {