aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorKrzysztof Helt <krzysztof.h1@wp.pl>2008-10-16 01:03:33 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-10-16 14:21:42 -0400
commit3a568051f3ae23d1a570a3d58eacde55279c632e (patch)
tree308f76a3d34dc2b766f413c17b874d1338bdc8e1 /drivers/video
parent9c8db4a265ee5000d8c21634277ec1eb9ceebc7f (diff)
neofb: remove open_lock mutex
Remove mutex from the fb_open/fb_release functions as these operations are mutexed at fb layer. Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/neofb.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/drivers/video/neofb.c b/drivers/video/neofb.c
index dea864552588..bfb802d26d5a 100644
--- a/drivers/video/neofb.c
+++ b/drivers/video/neofb.c
@@ -557,14 +557,12 @@ neofb_open(struct fb_info *info, int user)
557{ 557{
558 struct neofb_par *par = info->par; 558 struct neofb_par *par = info->par;
559 559
560 mutex_lock(&par->open_lock);
561 if (!par->ref_count) { 560 if (!par->ref_count) {
562 memset(&par->state, 0, sizeof(struct vgastate)); 561 memset(&par->state, 0, sizeof(struct vgastate));
563 par->state.flags = VGA_SAVE_MODE | VGA_SAVE_FONTS; 562 par->state.flags = VGA_SAVE_MODE | VGA_SAVE_FONTS;
564 save_vga(&par->state); 563 save_vga(&par->state);
565 } 564 }
566 par->ref_count++; 565 par->ref_count++;
567 mutex_unlock(&par->open_lock);
568 566
569 return 0; 567 return 0;
570} 568}
@@ -574,16 +572,13 @@ neofb_release(struct fb_info *info, int user)
574{ 572{
575 struct neofb_par *par = info->par; 573 struct neofb_par *par = info->par;
576 574
577 mutex_lock(&par->open_lock); 575 if (!par->ref_count)
578 if (!par->ref_count) {
579 mutex_unlock(&par->open_lock);
580 return -EINVAL; 576 return -EINVAL;
581 } 577
582 if (par->ref_count == 1) { 578 if (par->ref_count == 1) {
583 restore_vga(&par->state); 579 restore_vga(&par->state);
584 } 580 }
585 par->ref_count--; 581 par->ref_count--;
586 mutex_unlock(&par->open_lock);
587 582
588 return 0; 583 return 0;
589} 584}
@@ -1958,7 +1953,6 @@ static struct fb_info *__devinit neo_alloc_fb_info(struct pci_dev *dev, const st
1958 1953
1959 info->fix.accel = id->driver_data; 1954 info->fix.accel = id->driver_data;
1960 1955
1961 mutex_init(&par->open_lock);
1962 par->pci_burst = !nopciburst; 1956 par->pci_burst = !nopciburst;
1963 par->lcd_stretch = !nostretch; 1957 par->lcd_stretch = !nostretch;
1964 par->libretto = libretto; 1958 par->libretto = libretto;