projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4101273
)
sbus-rtc: BKL pushdown
author
Arnd Bergmann
<arnd@arndb.de>
Tue, 20 May 2008 17:16:40 +0000
(19:16 +0200)
committer
Jonathan Corbet
<corbet@lwn.net>
Wed, 2 Jul 2008 21:06:24 +0000
(15:06 -0600)
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
drivers/sbus/char/rtc.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/sbus/char/rtc.c
b/drivers/sbus/char/rtc.c
index 18d18f1a114ec9cdf8d4443bb236d0cb9b8e0208..b0429917154da55c4f6cfea7abda0366718ac8af 100644
(file)
--- a/
drivers/sbus/char/rtc.c
+++ b/
drivers/sbus/char/rtc.c
@@
-12,6
+12,7
@@
*/
#include <linux/module.h>
+#include <linux/smp_lock.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/miscdevice.h>
@@
-213,6
+214,7
@@
static int rtc_open(struct inode *inode, struct file *file)
{
int ret;
+ lock_kernel();
spin_lock_irq(&mostek_lock);
if (rtc_busy) {
ret = -EBUSY;
@@
-221,6
+223,7
@@
static int rtc_open(struct inode *inode, struct file *file)
ret = 0;
}
spin_unlock_irq(&mostek_lock);
+ unlock_kernel();
return ret;
}