diff options
Diffstat (limited to 'drivers/video/aty/radeon_base.c')
-rw-r--r-- | drivers/video/aty/radeon_base.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/video/aty/radeon_base.c b/drivers/video/aty/radeon_base.c index 9e279ee38da8..1e30b2b3e79f 100644 --- a/drivers/video/aty/radeon_base.c +++ b/drivers/video/aty/radeon_base.c | |||
@@ -293,7 +293,7 @@ static void radeon_unmap_ROM(struct radeonfb_info *rinfo, struct pci_dev *dev) | |||
293 | pci_unmap_rom(dev, rinfo->bios_seg); | 293 | pci_unmap_rom(dev, rinfo->bios_seg); |
294 | } | 294 | } |
295 | 295 | ||
296 | static int __devinit radeon_map_ROM(struct radeonfb_info *rinfo, struct pci_dev *dev) | 296 | static int radeon_map_ROM(struct radeonfb_info *rinfo, struct pci_dev *dev) |
297 | { | 297 | { |
298 | void __iomem *rom; | 298 | void __iomem *rom; |
299 | u16 dptr; | 299 | u16 dptr; |
@@ -388,7 +388,7 @@ static int __devinit radeon_map_ROM(struct radeonfb_info *rinfo, struct pci_dev | |||
388 | } | 388 | } |
389 | 389 | ||
390 | #ifdef CONFIG_X86 | 390 | #ifdef CONFIG_X86 |
391 | static int __devinit radeon_find_mem_vbios(struct radeonfb_info *rinfo) | 391 | static int radeon_find_mem_vbios(struct radeonfb_info *rinfo) |
392 | { | 392 | { |
393 | /* I simplified this code as we used to miss the signatures in | 393 | /* I simplified this code as we used to miss the signatures in |
394 | * a lot of case. It's now closer to XFree, we just don't check | 394 | * a lot of case. It's now closer to XFree, we just don't check |
@@ -423,7 +423,7 @@ static int __devinit radeon_find_mem_vbios(struct radeonfb_info *rinfo) | |||
423 | * Read XTAL (ref clock), SCLK and MCLK from Open Firmware device | 423 | * Read XTAL (ref clock), SCLK and MCLK from Open Firmware device |
424 | * tree. Hopefully, ATI OF driver is kind enough to fill these | 424 | * tree. Hopefully, ATI OF driver is kind enough to fill these |
425 | */ | 425 | */ |
426 | static int __devinit radeon_read_xtal_OF (struct radeonfb_info *rinfo) | 426 | static int radeon_read_xtal_OF(struct radeonfb_info *rinfo) |
427 | { | 427 | { |
428 | struct device_node *dp = rinfo->of_node; | 428 | struct device_node *dp = rinfo->of_node; |
429 | const u32 *val; | 429 | const u32 *val; |
@@ -453,7 +453,7 @@ static int __devinit radeon_read_xtal_OF (struct radeonfb_info *rinfo) | |||
453 | /* | 453 | /* |
454 | * Read PLL infos from chip registers | 454 | * Read PLL infos from chip registers |
455 | */ | 455 | */ |
456 | static int __devinit radeon_probe_pll_params(struct radeonfb_info *rinfo) | 456 | static int radeon_probe_pll_params(struct radeonfb_info *rinfo) |
457 | { | 457 | { |
458 | unsigned char ppll_div_sel; | 458 | unsigned char ppll_div_sel; |
459 | unsigned Ns, Nm, M; | 459 | unsigned Ns, Nm, M; |
@@ -591,7 +591,7 @@ static int __devinit radeon_probe_pll_params(struct radeonfb_info *rinfo) | |||
591 | /* | 591 | /* |
592 | * Retrieve PLL infos by different means (BIOS, Open Firmware, register probing...) | 592 | * Retrieve PLL infos by different means (BIOS, Open Firmware, register probing...) |
593 | */ | 593 | */ |
594 | static void __devinit radeon_get_pllinfo(struct radeonfb_info *rinfo) | 594 | static void radeon_get_pllinfo(struct radeonfb_info *rinfo) |
595 | { | 595 | { |
596 | /* | 596 | /* |
597 | * In the case nothing works, these are defaults; they are mostly | 597 | * In the case nothing works, these are defaults; they are mostly |
@@ -1868,7 +1868,7 @@ static struct fb_ops radeonfb_ops = { | |||
1868 | }; | 1868 | }; |
1869 | 1869 | ||
1870 | 1870 | ||
1871 | static int __devinit radeon_set_fbinfo (struct radeonfb_info *rinfo) | 1871 | static int radeon_set_fbinfo(struct radeonfb_info *rinfo) |
1872 | { | 1872 | { |
1873 | struct fb_info *info = rinfo->info; | 1873 | struct fb_info *info = rinfo->info; |
1874 | 1874 | ||
@@ -2143,8 +2143,8 @@ static struct bin_attribute edid2_attr = { | |||
2143 | }; | 2143 | }; |
2144 | 2144 | ||
2145 | 2145 | ||
2146 | static int __devinit radeonfb_pci_register (struct pci_dev *pdev, | 2146 | static int radeonfb_pci_register(struct pci_dev *pdev, |
2147 | const struct pci_device_id *ent) | 2147 | const struct pci_device_id *ent) |
2148 | { | 2148 | { |
2149 | struct fb_info *info; | 2149 | struct fb_info *info; |
2150 | struct radeonfb_info *rinfo; | 2150 | struct radeonfb_info *rinfo; |
@@ -2407,7 +2407,7 @@ err_out: | |||
2407 | 2407 | ||
2408 | 2408 | ||
2409 | 2409 | ||
2410 | static void __devexit radeonfb_pci_unregister (struct pci_dev *pdev) | 2410 | static void radeonfb_pci_unregister(struct pci_dev *pdev) |
2411 | { | 2411 | { |
2412 | struct fb_info *info = pci_get_drvdata(pdev); | 2412 | struct fb_info *info = pci_get_drvdata(pdev); |
2413 | struct radeonfb_info *rinfo = info->par; | 2413 | struct radeonfb_info *rinfo = info->par; |
@@ -2465,7 +2465,7 @@ static struct pci_driver radeonfb_driver = { | |||
2465 | .name = "radeonfb", | 2465 | .name = "radeonfb", |
2466 | .id_table = radeonfb_pci_table, | 2466 | .id_table = radeonfb_pci_table, |
2467 | .probe = radeonfb_pci_register, | 2467 | .probe = radeonfb_pci_register, |
2468 | .remove = __devexit_p(radeonfb_pci_unregister), | 2468 | .remove = radeonfb_pci_unregister, |
2469 | #ifdef CONFIG_PM | 2469 | #ifdef CONFIG_PM |
2470 | .suspend = radeonfb_pci_suspend, | 2470 | .suspend = radeonfb_pci_suspend, |
2471 | .resume = radeonfb_pci_resume, | 2471 | .resume = radeonfb_pci_resume, |