diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-12-21 16:07:39 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-03 18:57:01 -0500 |
commit | 48c68c4f1b542444f175a9e136febcecf3e704d8 (patch) | |
tree | d28f4f3b42643990c2908d27e9caf120f6234b73 /drivers/video/cg6.c | |
parent | 8590dbc79a0ff5d7ab16b2b1743684c241ae3c65 (diff) |
Drivers: video: remove __dev* attributes.
CONFIG_HOTPLUG is going away as an option. As a result, the __dev*
markings need to be removed.
This change removes the use of __devinit, __devexit_p, __devinitdata,
__devinitconst, and __devexit from these drivers.
Based on patches originally written by Bill Pemberton, but redone by me
in order to handle some of the coding style issues better, by hand.
Cc: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/video/cg6.c')
-rw-r--r-- | drivers/video/cg6.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/video/cg6.c b/drivers/video/cg6.c index 179e96cdb323..3545decc7485 100644 --- a/drivers/video/cg6.c +++ b/drivers/video/cg6.c | |||
@@ -607,7 +607,7 @@ static int cg6_ioctl(struct fb_info *info, unsigned int cmd, unsigned long arg) | |||
607 | * Initialisation | 607 | * Initialisation |
608 | */ | 608 | */ |
609 | 609 | ||
610 | static void __devinit cg6_init_fix(struct fb_info *info, int linebytes) | 610 | static void cg6_init_fix(struct fb_info *info, int linebytes) |
611 | { | 611 | { |
612 | struct cg6_par *par = (struct cg6_par *)info->par; | 612 | struct cg6_par *par = (struct cg6_par *)info->par; |
613 | const char *cg6_cpu_name, *cg6_card_name; | 613 | const char *cg6_cpu_name, *cg6_card_name; |
@@ -649,7 +649,7 @@ static void __devinit cg6_init_fix(struct fb_info *info, int linebytes) | |||
649 | } | 649 | } |
650 | 650 | ||
651 | /* Initialize Brooktree DAC */ | 651 | /* Initialize Brooktree DAC */ |
652 | static void __devinit cg6_bt_init(struct cg6_par *par) | 652 | static void cg6_bt_init(struct cg6_par *par) |
653 | { | 653 | { |
654 | struct bt_regs __iomem *bt = par->bt; | 654 | struct bt_regs __iomem *bt = par->bt; |
655 | 655 | ||
@@ -663,7 +663,7 @@ static void __devinit cg6_bt_init(struct cg6_par *par) | |||
663 | sbus_writel(0x00 << 24, &bt->control); | 663 | sbus_writel(0x00 << 24, &bt->control); |
664 | } | 664 | } |
665 | 665 | ||
666 | static void __devinit cg6_chip_init(struct fb_info *info) | 666 | static void cg6_chip_init(struct fb_info *info) |
667 | { | 667 | { |
668 | struct cg6_par *par = (struct cg6_par *)info->par; | 668 | struct cg6_par *par = (struct cg6_par *)info->par; |
669 | struct cg6_tec __iomem *tec = par->tec; | 669 | struct cg6_tec __iomem *tec = par->tec; |
@@ -737,7 +737,7 @@ static void cg6_unmap_regs(struct platform_device *op, struct fb_info *info, | |||
737 | info->fix.smem_len); | 737 | info->fix.smem_len); |
738 | } | 738 | } |
739 | 739 | ||
740 | static int __devinit cg6_probe(struct platform_device *op) | 740 | static int cg6_probe(struct platform_device *op) |
741 | { | 741 | { |
742 | struct device_node *dp = op->dev.of_node; | 742 | struct device_node *dp = op->dev.of_node; |
743 | struct fb_info *info; | 743 | struct fb_info *info; |
@@ -827,7 +827,7 @@ out_err: | |||
827 | return err; | 827 | return err; |
828 | } | 828 | } |
829 | 829 | ||
830 | static int __devexit cg6_remove(struct platform_device *op) | 830 | static int cg6_remove(struct platform_device *op) |
831 | { | 831 | { |
832 | struct fb_info *info = dev_get_drvdata(&op->dev); | 832 | struct fb_info *info = dev_get_drvdata(&op->dev); |
833 | struct cg6_par *par = info->par; | 833 | struct cg6_par *par = info->par; |
@@ -862,7 +862,7 @@ static struct platform_driver cg6_driver = { | |||
862 | .of_match_table = cg6_match, | 862 | .of_match_table = cg6_match, |
863 | }, | 863 | }, |
864 | .probe = cg6_probe, | 864 | .probe = cg6_probe, |
865 | .remove = __devexit_p(cg6_remove), | 865 | .remove = cg6_remove, |
866 | }; | 866 | }; |
867 | 867 | ||
868 | static int __init cg6_init(void) | 868 | static int __init cg6_init(void) |