Commit a5d546c0 authored by Hiroshi DOYU's avatar Hiroshi DOYU Committed by Tony Lindgren

DSPGW: Remove CONFIG_OMAP_DSP_TASK_MULTIOPEN

This MULTIOPEN feature should always be enabled.
Signed-off-by: default avatarHiroshi DOYU <Hiroshi.DOYU@nokia.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 5c4a8081
...@@ -14,13 +14,6 @@ config OMAP_DSP_MBCMD_VERBOSE ...@@ -14,13 +14,6 @@ config OMAP_DSP_MBCMD_VERBOSE
This enables kernel log output in the Mailbox command exchanges This enables kernel log output in the Mailbox command exchanges
in the DSP Gateway driver. in the DSP Gateway driver.
config OMAP_DSP_TASK_MULTIOPEN
bool "DSP Task Multiopen Capability"
depends on OMAP_DSP
help
This enables DSP tasks to be opened by multiple times at a time.
Otherwise, they can be opened only once at a time.
config OMAP_DSP_FBEXPORT config OMAP_DSP_FBEXPORT
bool "Framebuffer export to DSP" bool "Framebuffer export to DSP"
depends on OMAP_DSP && FB depends on OMAP_DSP && FB
......
...@@ -1453,13 +1453,6 @@ static int dsp_task_open(struct inode *inode, struct file *file) ...@@ -1453,13 +1453,6 @@ static int dsp_task_open(struct inode *inode, struct file *file)
} }
attached: attached:
/* ATTACHED */
#ifndef CONFIG_OMAP_DSP_TASK_MULTIOPEN
if (dev->usecount > 0) {
up_write(&dev->state_sem);
return -EBUSY;
}
#endif
ret = proc_list_add(&dev->proc_list_lock, ret = proc_list_add(&dev->proc_list_lock,
&dev->proc_list, current, file); &dev->proc_list, current, file);
if (ret) if (ret)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment