diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-01-03 19:17:50 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-01-03 19:17:50 -0500 |
commit | 49569646b2413ee1a4fb7c4537fca058ac22292e (patch) | |
tree | 41b8bc72975610295c2e4cf9318478272c667c75 /drivers/video/asiliantfb.c | |
parent | 5f738967e89584f99c6a11c6bf09b16c50b6a03e (diff) | |
parent | 6ae141718e3f9c7e2c620e999c86612a7f415bb1 (diff) |
Merge tag 'driver-core-3.8-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core
Pull driver core __dev* removal patches - take 3 - from Greg Kroah-Hartman:
"Here are the remaining __dev* removal patches against the 3.8-rc2
tree. All of these patches were previously sent to the subsystem
maintainers, most of them were picked up and pushed to you, but there
were a number that fell through the cracks, and new drivers were added
during the merge window, so this series cleans up the rest of the
instances of these markings.
Third time's the charm...
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>"
Fixed up trivial conflict with the pinctrl pull in pinctrl-sirf.c.
* tag 'driver-core-3.8-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: (54 commits)
misc: remove __dev* attributes.
include: remove __dev* attributes.
Documentation: remove __dev* attributes.
Drivers: misc: remove __dev* attributes.
Drivers: block: remove __dev* attributes.
Drivers: bcma: remove __dev* attributes.
Drivers: char: remove __dev* attributes.
Drivers: clocksource: remove __dev* attributes.
Drivers: ssb: remove __dev* attributes.
Drivers: dma: remove __dev* attributes.
Drivers: gpu: remove __dev* attributes.
Drivers: infinband: remove __dev* attributes.
Drivers: memory: remove __dev* attributes.
Drivers: mmc: remove __dev* attributes.
Drivers: iommu: remove __dev* attributes.
Drivers: power: remove __dev* attributes.
Drivers: message: remove __dev* attributes.
Drivers: macintosh: remove __dev* attributes.
Drivers: mfd: remove __dev* attributes.
pstore: remove __dev* attributes.
...
Diffstat (limited to 'drivers/video/asiliantfb.c')
-rw-r--r-- | drivers/video/asiliantfb.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/video/asiliantfb.c b/drivers/video/asiliantfb.c index 8cdf88e20b4b..d5a37d62847b 100644 --- a/drivers/video/asiliantfb.c +++ b/drivers/video/asiliantfb.c | |||
@@ -451,7 +451,7 @@ static struct chips_init_reg chips_init_xr[] = | |||
451 | {0xd1, 0x01}, | 451 | {0xd1, 0x01}, |
452 | }; | 452 | }; |
453 | 453 | ||
454 | static void __devinit chips_hw_init(struct fb_info *p) | 454 | static void chips_hw_init(struct fb_info *p) |
455 | { | 455 | { |
456 | int i; | 456 | int i; |
457 | 457 | ||
@@ -474,7 +474,7 @@ static void __devinit chips_hw_init(struct fb_info *p) | |||
474 | write_fr(chips_init_fr[i].addr, chips_init_fr[i].data); | 474 | write_fr(chips_init_fr[i].addr, chips_init_fr[i].data); |
475 | } | 475 | } |
476 | 476 | ||
477 | static struct fb_fix_screeninfo asiliantfb_fix __devinitdata = { | 477 | static struct fb_fix_screeninfo asiliantfb_fix = { |
478 | .id = "Asiliant 69000", | 478 | .id = "Asiliant 69000", |
479 | .type = FB_TYPE_PACKED_PIXELS, | 479 | .type = FB_TYPE_PACKED_PIXELS, |
480 | .visual = FB_VISUAL_PSEUDOCOLOR, | 480 | .visual = FB_VISUAL_PSEUDOCOLOR, |
@@ -483,7 +483,7 @@ static struct fb_fix_screeninfo asiliantfb_fix __devinitdata = { | |||
483 | .smem_len = 0x200000, /* 2MB */ | 483 | .smem_len = 0x200000, /* 2MB */ |
484 | }; | 484 | }; |
485 | 485 | ||
486 | static struct fb_var_screeninfo asiliantfb_var __devinitdata = { | 486 | static struct fb_var_screeninfo asiliantfb_var = { |
487 | .xres = 640, | 487 | .xres = 640, |
488 | .yres = 480, | 488 | .yres = 480, |
489 | .xres_virtual = 640, | 489 | .xres_virtual = 640, |
@@ -504,7 +504,7 @@ static struct fb_var_screeninfo asiliantfb_var __devinitdata = { | |||
504 | .vsync_len = 2, | 504 | .vsync_len = 2, |
505 | }; | 505 | }; |
506 | 506 | ||
507 | static int __devinit init_asiliant(struct fb_info *p, unsigned long addr) | 507 | static int init_asiliant(struct fb_info *p, unsigned long addr) |
508 | { | 508 | { |
509 | int err; | 509 | int err; |
510 | 510 | ||
@@ -535,8 +535,8 @@ static int __devinit init_asiliant(struct fb_info *p, unsigned long addr) | |||
535 | return 0; | 535 | return 0; |
536 | } | 536 | } |
537 | 537 | ||
538 | static int __devinit | 538 | static int asiliantfb_pci_init(struct pci_dev *dp, |
539 | asiliantfb_pci_init(struct pci_dev *dp, const struct pci_device_id *ent) | 539 | const struct pci_device_id *ent) |
540 | { | 540 | { |
541 | unsigned long addr, size; | 541 | unsigned long addr, size; |
542 | struct fb_info *p; | 542 | struct fb_info *p; |
@@ -581,7 +581,7 @@ asiliantfb_pci_init(struct pci_dev *dp, const struct pci_device_id *ent) | |||
581 | return 0; | 581 | return 0; |
582 | } | 582 | } |
583 | 583 | ||
584 | static void __devexit asiliantfb_remove(struct pci_dev *dp) | 584 | static void asiliantfb_remove(struct pci_dev *dp) |
585 | { | 585 | { |
586 | struct fb_info *p = pci_get_drvdata(dp); | 586 | struct fb_info *p = pci_get_drvdata(dp); |
587 | 587 | ||
@@ -593,7 +593,7 @@ static void __devexit asiliantfb_remove(struct pci_dev *dp) | |||
593 | framebuffer_release(p); | 593 | framebuffer_release(p); |
594 | } | 594 | } |
595 | 595 | ||
596 | static struct pci_device_id asiliantfb_pci_tbl[] __devinitdata = { | 596 | static struct pci_device_id asiliantfb_pci_tbl[] = { |
597 | { PCI_VENDOR_ID_CT, PCI_DEVICE_ID_CT_69000, PCI_ANY_ID, PCI_ANY_ID }, | 597 | { PCI_VENDOR_ID_CT, PCI_DEVICE_ID_CT_69000, PCI_ANY_ID, PCI_ANY_ID }, |
598 | { 0 } | 598 | { 0 } |
599 | }; | 599 | }; |
@@ -604,7 +604,7 @@ static struct pci_driver asiliantfb_driver = { | |||
604 | .name = "asiliantfb", | 604 | .name = "asiliantfb", |
605 | .id_table = asiliantfb_pci_tbl, | 605 | .id_table = asiliantfb_pci_tbl, |
606 | .probe = asiliantfb_pci_init, | 606 | .probe = asiliantfb_pci_init, |
607 | .remove = __devexit_p(asiliantfb_remove), | 607 | .remove = asiliantfb_remove, |
608 | }; | 608 | }; |
609 | 609 | ||
610 | static int __init asiliantfb_init(void) | 610 | static int __init asiliantfb_init(void) |