Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
52e7c5e0
Commit
52e7c5e0
authored
May 20, 2008
by
Arnd Bergmann
Committed by
Jonathan Corbet
Jun 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
basler-excite: BKL pushdown
Signed-off-by:
Arnd Bergmann
<
arnd@arndb.de
>
parent
864fe516
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
arch/mips/basler/excite/excite_iodev.c
arch/mips/basler/excite/excite_iodev.c
+8
-1
No files found.
arch/mips/basler/excite/excite_iodev.c
View file @
52e7c5e0
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
#include <linux/interrupt.h>
#include <linux/interrupt.h>
#include <linux/platform_device.h>
#include <linux/platform_device.h>
#include <linux/miscdevice.h>
#include <linux/miscdevice.h>
#include <linux/smp_lock.h>
#include "excite_iodev.h"
#include "excite_iodev.h"
...
@@ -110,8 +111,14 @@ static int __exit iodev_remove(struct device *dev)
...
@@ -110,8 +111,14 @@ static int __exit iodev_remove(struct device *dev)
static
int
iodev_open
(
struct
inode
*
i
,
struct
file
*
f
)
static
int
iodev_open
(
struct
inode
*
i
,
struct
file
*
f
)
{
{
return
request_irq
(
iodev_irq
,
iodev_irqhdl
,
IRQF_DISABLED
,
int
ret
;
lock_kernel
();
ret
=
request_irq
(
iodev_irq
,
iodev_irqhdl
,
IRQF_DISABLED
,
iodev_name
,
&
miscdev
);
iodev_name
,
&
miscdev
);
unlock_kernel
();
return
ret
;
}
}
static
int
iodev_release
(
struct
inode
*
i
,
struct
file
*
f
)
static
int
iodev_release
(
struct
inode
*
i
,
struct
file
*
f
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment