Commit e67f4d4d authored by Aaro Koskinen's avatar Aaro Koskinen Committed by Greg Kroah-Hartman

staging: xgifb: replace orXGIIDXREG() with xgifb_reg_or()

Replace orXGIIDXREG() with xgifb_reg_or().
Signed-off-by: default avatarAaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent b6e2dc39
...@@ -1188,7 +1188,7 @@ static int XGIfb_pan_var(struct fb_var_screeninfo *var) ...@@ -1188,7 +1188,7 @@ static int XGIfb_pan_var(struct fb_var_screeninfo *var)
setXGIIDXREG(XGISR, 0x37, 0xDF, (base >> 21) & 0x04); setXGIIDXREG(XGISR, 0x37, 0xDF, (base >> 21) & 0x04);
if (xgi_video_info.disp_state & DISPTYPE_DISP2) { if (xgi_video_info.disp_state & DISPTYPE_DISP2) {
orXGIIDXREG(XGIPART1, XGIfb_CRT2_write_enable, 0x01); xgifb_reg_or(XGIPART1, XGIfb_CRT2_write_enable, 0x01);
xgifb_reg_set(XGIPART1, 0x06, (base & 0xFF)); xgifb_reg_set(XGIPART1, 0x06, (base & 0xFF));
xgifb_reg_set(XGIPART1, 0x05, ((base >> 8) & 0xFF)); xgifb_reg_set(XGIPART1, 0x05, ((base >> 8) & 0xFF));
xgifb_reg_set(XGIPART1, 0x04, ((base >> 16) & 0xFF)); xgifb_reg_set(XGIPART1, 0x04, ((base >> 16) & 0xFF));
...@@ -1821,7 +1821,7 @@ void XGI_Sense30x(void) ...@@ -1821,7 +1821,7 @@ void XGI_Sense30x(void)
testvga2_tempcl, testvga2_tempch); testvga2_tempcl, testvga2_tempch);
if (result) { if (result) {
printk(KERN_INFO "XGIfb: Detected secondary VGA connection\n"); printk(KERN_INFO "XGIfb: Detected secondary VGA connection\n");
orXGIIDXREG(XGICR, 0x32, 0x10); xgifb_reg_or(XGICR, 0x32, 0x10);
} }
} }
...@@ -1831,7 +1831,7 @@ void XGI_Sense30x(void) ...@@ -1831,7 +1831,7 @@ void XGI_Sense30x(void)
printk(KERN_INFO "XGIfb: Detected TV connected to SVHS output\n"); printk(KERN_INFO "XGIfb: Detected TV connected to SVHS output\n");
/* TW: So we can be sure that there IS a SVHS output */ /* TW: So we can be sure that there IS a SVHS output */
xgi_video_info.TV_plug = TVPLUG_SVIDEO; xgi_video_info.TV_plug = TVPLUG_SVIDEO;
orXGIIDXREG(XGICR, 0x32, 0x02); xgifb_reg_or(XGICR, 0x32, 0x02);
} }
if (!result) { if (!result) {
...@@ -1841,7 +1841,7 @@ void XGI_Sense30x(void) ...@@ -1841,7 +1841,7 @@ void XGI_Sense30x(void)
printk(KERN_INFO "XGIfb: Detected TV connected to CVBS output\n"); printk(KERN_INFO "XGIfb: Detected TV connected to CVBS output\n");
/* TW: So we can be sure that there IS a CVBS output */ /* TW: So we can be sure that there IS a CVBS output */
xgi_video_info.TV_plug = TVPLUG_COMPOSITE; xgi_video_info.TV_plug = TVPLUG_COMPOSITE;
orXGIIDXREG(XGICR, 0x32, 0x01); xgifb_reg_or(XGICR, 0x32, 0x01);
} }
} }
XGIDoSense(0, 0, 0, 0); XGIDoSense(0, 0, 0, 0);
...@@ -1963,7 +1963,7 @@ static void XGIfb_post_setmode(void) ...@@ -1963,7 +1963,7 @@ static void XGIfb_post_setmode(void)
break; break;
} }
orXGIIDXREG(XGIPART1, XGIfb_CRT2_write_enable, 0x01); xgifb_reg_or(XGIPART1, XGIfb_CRT2_write_enable, 0x01);
if (xgi_video_info.TV_type == TVMODE_NTSC) { if (xgi_video_info.TV_type == TVMODE_NTSC) {
...@@ -1976,7 +1976,7 @@ static void XGIfb_post_setmode(void) ...@@ -1976,7 +1976,7 @@ static void XGIfb_post_setmode(void)
} else if (xgi_video_info.TV_plug } else if (xgi_video_info.TV_plug
== TVPLUG_COMPOSITE) { == TVPLUG_COMPOSITE) {
orXGIIDXREG(XGIPART2, 0x30, 0x20); xgifb_reg_or(XGIPART2, 0x30, 0x20);
switch (xgi_video_info.video_width) { switch (xgi_video_info.video_width) {
case 640: case 640:
...@@ -2011,7 +2011,7 @@ static void XGIfb_post_setmode(void) ...@@ -2011,7 +2011,7 @@ static void XGIfb_post_setmode(void)
} else if (xgi_video_info.TV_plug } else if (xgi_video_info.TV_plug
== TVPLUG_COMPOSITE) { == TVPLUG_COMPOSITE) {
orXGIIDXREG(XGIPART2, 0x30, 0x20); xgifb_reg_or(XGIPART2, 0x30, 0x20);
switch (xgi_video_info.video_width) { switch (xgi_video_info.video_width) {
case 640: case 640:
...@@ -2214,7 +2214,7 @@ static int __devinit xgifb_probe(struct pci_dev *pdev, ...@@ -2214,7 +2214,7 @@ static int __devinit xgifb_probe(struct pci_dev *pdev,
switch (xgi_video_info.chip_id) { switch (xgi_video_info.chip_id) {
case PCI_DEVICE_ID_XG_20: case PCI_DEVICE_ID_XG_20:
orXGIIDXREG(XGICR, Index_CR_GPIO_Reg3, GPIOG_EN); xgifb_reg_or(XGICR, Index_CR_GPIO_Reg3, GPIOG_EN);
CR48 = xgifb_reg_get(XGICR, Index_CR_GPIO_Reg1); CR48 = xgifb_reg_get(XGICR, Index_CR_GPIO_Reg1);
if (CR48&GPIOG_READ) if (CR48&GPIOG_READ)
xgi_video_info.chip = XG21; xgi_video_info.chip = XG21;
...@@ -2266,9 +2266,9 @@ static int __devinit xgifb_probe(struct pci_dev *pdev, ...@@ -2266,9 +2266,9 @@ static int __devinit xgifb_probe(struct pci_dev *pdev,
if ((xgifb_mode_idx < 0) || ((XGIbios_mode[xgifb_mode_idx].mode_no) != 0xFF)) { if ((xgifb_mode_idx < 0) || ((XGIbios_mode[xgifb_mode_idx].mode_no) != 0xFF)) {
/* Enable PCI_LINEAR_ADDRESSING and MMIO_ENABLE */ /* Enable PCI_LINEAR_ADDRESSING and MMIO_ENABLE */
orXGIIDXREG(XGISR, IND_XGI_PCI_ADDRESS_SET, (XGI_PCI_ADDR_ENABLE | XGI_MEM_MAP_IO_ENABLE)); xgifb_reg_or(XGISR, IND_XGI_PCI_ADDRESS_SET, (XGI_PCI_ADDR_ENABLE | XGI_MEM_MAP_IO_ENABLE));
/* Enable 2D accelerator engine */ /* Enable 2D accelerator engine */
orXGIIDXREG(XGISR, IND_XGI_MODULE_ENABLE, XGI_ENABLE_2D); xgifb_reg_or(XGISR, IND_XGI_MODULE_ENABLE, XGI_ENABLE_2D);
} }
XGIhw_ext.ulVideoMemorySize = xgi_video_info.video_size; XGIhw_ext.ulVideoMemorySize = xgi_video_info.video_size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment