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/auo_k190x.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/auo_k190x.c')
-rw-r--r-- | drivers/video/auo_k190x.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/auo_k190x.c b/drivers/video/auo_k190x.c index c03ecdd31e4c..97f79356141e 100644 --- a/drivers/video/auo_k190x.c +++ b/drivers/video/auo_k190x.c | |||
@@ -773,8 +773,8 @@ EXPORT_SYMBOL_GPL(auok190x_pm); | |||
773 | * Common probe and remove code | 773 | * Common probe and remove code |
774 | */ | 774 | */ |
775 | 775 | ||
776 | int __devinit auok190x_common_probe(struct platform_device *pdev, | 776 | int auok190x_common_probe(struct platform_device *pdev, |
777 | struct auok190x_init_data *init) | 777 | struct auok190x_init_data *init) |
778 | { | 778 | { |
779 | struct auok190x_board *board = init->board; | 779 | struct auok190x_board *board = init->board; |
780 | struct auok190xfb_par *par; | 780 | struct auok190xfb_par *par; |
@@ -1006,7 +1006,7 @@ err_reg: | |||
1006 | } | 1006 | } |
1007 | EXPORT_SYMBOL_GPL(auok190x_common_probe); | 1007 | EXPORT_SYMBOL_GPL(auok190x_common_probe); |
1008 | 1008 | ||
1009 | int __devexit auok190x_common_remove(struct platform_device *pdev) | 1009 | int auok190x_common_remove(struct platform_device *pdev) |
1010 | { | 1010 | { |
1011 | struct fb_info *info = platform_get_drvdata(pdev); | 1011 | struct fb_info *info = platform_get_drvdata(pdev); |
1012 | struct auok190xfb_par *par = info->par; | 1012 | struct auok190xfb_par *par = info->par; |