Commit 57a3db98ac88854e20780e2337471323ba63bde2

Authored by Adrian Bunk
Committed by Linus Torvalds
1 parent bce9451310

drivers/video/macmodes.c:mac_find_mode() mustn't be __devinit

If it's EXPORT_SYMBOL'ed it can't be __devinit.

Reported by Mikael Pettersson.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Cc: Michal Piotrowski <michal.k.k.piotrowski@gmail.com>
Cc: <stable@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 2 changed files with 6 additions and 7 deletions Side-by-side Diff

drivers/video/macmodes.c
... ... @@ -369,9 +369,8 @@
369 369 *
370 370 */
371 371  
372   -int __devinit mac_find_mode(struct fb_var_screeninfo *var,
373   - struct fb_info *info, const char *mode_option,
374   - unsigned int default_bpp)
  372 +int mac_find_mode(struct fb_var_screeninfo *var, struct fb_info *info,
  373 + const char *mode_option, unsigned int default_bpp)
375 374 {
376 375 const struct fb_videomode *db = NULL;
377 376 unsigned int dbsize = 0;
drivers/video/macmodes.h
... ... @@ -55,10 +55,10 @@
55 55 extern int mac_var_to_vmode(const struct fb_var_screeninfo *var, int *vmode,
56 56 int *cmode);
57 57 extern int mac_map_monitor_sense(int sense);
58   -extern int __devinit mac_find_mode(struct fb_var_screeninfo *var,
59   - struct fb_info *info,
60   - const char *mode_option,
61   - unsigned int default_bpp);
  58 +extern int mac_find_mode(struct fb_var_screeninfo *var,
  59 + struct fb_info *info,
  60 + const char *mode_option,
  61 + unsigned int default_bpp);
62 62  
63 63  
64 64 /*