aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/console/fbcon.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2013-01-24 19:28:18 -0500
committerDave Airlie <airlied@redhat.com>2013-02-07 21:02:41 -0500
commite93a9a868792ad71cdd09d75e5a02d8067473c4e (patch)
treed2affabcd5a7e48a77ca148c9dc9be4f23de9936 /drivers/video/console/fbcon.c
parent50e244cc793d511b86adea24972f3a7264cae114 (diff)
fb: Yet another band-aid for fixing lockdep mess
I've still got lockdep warnings even after Alan's patch, and it seems that yet more band aids are required to paper over similar paths for unbind_con_driver() and unregister_con_driver(). After this hack, lockdep warnings are finally gone. Signed-off-by: Takashi Iwai <tiwai@suse.de> Cc: Alan Cox <alan@linux.intel.com> Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> Cc: Jiri Kosina <jkosina@suse.cz> Cc: stable <stable@vger.kernel.org> Tested-by: Sedat Dilek <sedat.dilek@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/video/console/fbcon.c')
-rw-r--r--drivers/video/console/fbcon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c
index 4bd7820cf4d0..2aef9cac4d18 100644
--- a/drivers/video/console/fbcon.c
+++ b/drivers/video/console/fbcon.c
@@ -3004,7 +3004,7 @@ static int fbcon_unbind(void)
3004{ 3004{
3005 int ret; 3005 int ret;
3006 3006
3007 ret = unbind_con_driver(&fb_con, first_fb_vc, last_fb_vc, 3007 ret = do_unbind_con_driver(&fb_con, first_fb_vc, last_fb_vc,
3008 fbcon_is_default); 3008 fbcon_is_default);
3009 3009
3010 if (!ret) 3010 if (!ret)
@@ -3077,7 +3077,7 @@ static int fbcon_fb_unregistered(struct fb_info *info)
3077 primary_device = -1; 3077 primary_device = -1;
3078 3078
3079 if (!num_registered_fb) 3079 if (!num_registered_fb)
3080 unregister_con_driver(&fb_con); 3080 do_unregister_con_driver(&fb_con);
3081 3081
3082 return 0; 3082 return 0;
3083} 3083}