summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Marklund <robert.marklund@stericsson.com>2011-06-23 13:22:25 +0200
committerRobert Marklund <robert.marklund@stericsson.com>2011-10-05 12:16:38 +0200
commit50cf0204326f2678cdc62833b721591e39c21cb6 (patch)
treeaf601b47fc9a2bd0b6b6603cdfb0836a045042f4
parentc22b8b409cf8d61a0c9711a0969eb8d70e7df95f (diff)
av8100: Big kernel lock removed in 3.0
Removed the use of big kernel lock, this must be fixed properly otherwise this will fail. Change-Id: I3af5e0a0b76355563454f046e2297f56bdf8e3df Signed-off-by: Robert Marklund <robert.marklund@stericsson.com>
-rw-r--r--drivers/video/av8100/hdmi.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/video/av8100/hdmi.c b/drivers/video/av8100/hdmi.c
index 0cf85655b7f..b023048d810 100644
--- a/drivers/video/av8100/hdmi.c
+++ b/drivers/video/av8100/hdmi.c
@@ -23,7 +23,6 @@
#include "hdmi_loc.h"
#include <linux/slab.h>
#include <linux/sched.h>
-#include <linux/smp_lock.h>
#define SYSFS_EVENT_FILENAME "evread"
@@ -2104,9 +2103,7 @@ static long hdmi_unlocked_ioctl(struct file *file, unsigned int cmd,
{
int ret;
- lock_kernel();
ret = hdmi_ioctl(file, cmd, arg);
- unlock_kernel();
return ret;
}