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/mbx/mbxdebugfs.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/mbx/mbxdebugfs.c')
-rw-r--r-- | drivers/video/mbx/mbxdebugfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/mbx/mbxdebugfs.c b/drivers/video/mbx/mbxdebugfs.c index 12dec7634c55..4449f249b0e7 100644 --- a/drivers/video/mbx/mbxdebugfs.c +++ b/drivers/video/mbx/mbxdebugfs.c | |||
@@ -213,7 +213,7 @@ static const struct file_operations misc_fops = { | |||
213 | .llseek = default_llseek, | 213 | .llseek = default_llseek, |
214 | }; | 214 | }; |
215 | 215 | ||
216 | static void __devinit mbxfb_debugfs_init(struct fb_info *fbi) | 216 | static void mbxfb_debugfs_init(struct fb_info *fbi) |
217 | { | 217 | { |
218 | struct mbxfb_info *mfbi = fbi->par; | 218 | struct mbxfb_info *mfbi = fbi->par; |
219 | struct mbxfb_debugfs_data *dbg; | 219 | struct mbxfb_debugfs_data *dbg; |
@@ -236,7 +236,7 @@ static void __devinit mbxfb_debugfs_init(struct fb_info *fbi) | |||
236 | fbi, &misc_fops); | 236 | fbi, &misc_fops); |
237 | } | 237 | } |
238 | 238 | ||
239 | static void __devexit mbxfb_debugfs_remove(struct fb_info *fbi) | 239 | static void mbxfb_debugfs_remove(struct fb_info *fbi) |
240 | { | 240 | { |
241 | struct mbxfb_info *mfbi = fbi->par; | 241 | struct mbxfb_info *mfbi = fbi->par; |
242 | struct mbxfb_debugfs_data *dbg = mfbi->debugfs_data; | 242 | struct mbxfb_debugfs_data *dbg = mfbi->debugfs_data; |