aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/sstfb.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/video/sstfb.c')
-rw-r--r--drivers/video/sstfb.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/sstfb.c b/drivers/video/sstfb.c
index 9c00026e3ae2..f0cb279ef333 100644
--- a/drivers/video/sstfb.c
+++ b/drivers/video/sstfb.c
@@ -706,10 +706,10 @@ static void sstfb_setvgapass( struct fb_info *info, int enable )
706 fbiinit0 = sst_read (FBIINIT0); 706 fbiinit0 = sst_read (FBIINIT0);
707 if (par->vgapass) { 707 if (par->vgapass) {
708 sst_write(FBIINIT0, fbiinit0 & ~DIS_VGA_PASSTHROUGH); 708 sst_write(FBIINIT0, fbiinit0 & ~DIS_VGA_PASSTHROUGH);
709 printk(KERN_INFO "fb%d: Enabling VGA pass-through\n", info->node ); 709 fb_info(info, "Enabling VGA pass-through\n");
710 } else { 710 } else {
711 sst_write(FBIINIT0, fbiinit0 | DIS_VGA_PASSTHROUGH); 711 sst_write(FBIINIT0, fbiinit0 | DIS_VGA_PASSTHROUGH);
712 printk(KERN_INFO "fb%d: Disabling VGA pass-through\n", info->node ); 712 fb_info(info, "Disabling VGA pass-through\n");
713 } 713 }
714 pci_write_config_dword(sst_dev, PCI_INIT_ENABLE, tmp); 714 pci_write_config_dword(sst_dev, PCI_INIT_ENABLE, tmp);
715} 715}
@@ -1437,8 +1437,8 @@ static int sstfb_probe(struct pci_dev *pdev, const struct pci_device_id *id)
1437 printk(KERN_WARNING "sstfb: can't create sysfs entry.\n"); 1437 printk(KERN_WARNING "sstfb: can't create sysfs entry.\n");
1438 1438
1439 1439
1440 printk(KERN_INFO "fb%d: %s frame buffer device at 0x%p\n", 1440 fb_info(info, "%s frame buffer device at 0x%p\n",
1441 info->node, fix->id, info->screen_base); 1441 fix->id, info->screen_base);
1442 1442
1443 return 0; 1443 return 0;
1444 1444