Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43814
b: refs/heads/master
c: 044aaa3
h: refs/heads/master
v: v3
  • Loading branch information
Ville Syrjala authored and Linus Torvalds committed Dec 8, 2006
1 parent 03c4573 commit de0d32e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 27b6859799ea766281828588e1adb17751193075
refs/heads/master: 044aaa32e789492e638a229b5f1930bfb8bc75a1
10 changes: 5 additions & 5 deletions trunk/drivers/video/aty/atyfb_base.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ static int atyfb_sync(struct fb_info *info);
* Internal routines
*/

static int aty_init(struct fb_info *info, const char *name);
static int aty_init(struct fb_info *info);
#ifdef CONFIG_ATARI
static int store_video_par(char *videopar, unsigned char m64_num);
#endif
Expand Down Expand Up @@ -2344,7 +2344,7 @@ static int __devinit atyfb_get_timings_from_lcd(struct atyfb_par *par,
}
#endif /* defined(__i386__) && defined(CONFIG_FB_ATY_GENERIC_LCD) */

static int __devinit aty_init(struct fb_info *info, const char *name)
static int __devinit aty_init(struct fb_info *info)
{
struct atyfb_par *par = (struct atyfb_par *) info->par;
const char *ramname = NULL, *xtal;
Expand Down Expand Up @@ -2748,7 +2748,7 @@ static int __devinit aty_init(struct fb_info *info, const char *name)
fb_list = info;

PRINTKI("fb%d: %s frame buffer device on %s\n",
info->node, info->fix.id, name);
info->node, info->fix.id, par->bus_type == ISA ? "ISA" : "PCI");
return 0;

aty_init_exit:
Expand Down Expand Up @@ -3597,7 +3597,7 @@ static int __devinit atyfb_pci_probe(struct pci_dev *pdev, const struct pci_devi
pci_set_drvdata(pdev, info);

/* Init chip & register framebuffer */
if (aty_init(info, "PCI"))
if (aty_init(info))
goto err_release_io;

#ifdef __sparc__
Expand Down Expand Up @@ -3697,7 +3697,7 @@ static int __devinit atyfb_atari_probe(void)
break;
}

if (aty_init(info, "ISA bus")) {
if (aty_init(info)) {
if (info->screen_base)
iounmap(info->screen_base);
if (par->ati_regbase)
Expand Down

0 comments on commit de0d32e

Please sign in to comment.