Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 100376
b: refs/heads/master
c: 4333dee
h: refs/heads/master
v: v3
  • Loading branch information
Arnd Bergmann authored and Jonathan Corbet committed Jul 2, 2008
1 parent a9cb871 commit cf5360d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f29b889edef0c3ab98732c84247c790a1583cb94
refs/heads/master: 4333deee6b7a5a82afb9e700e76cb46e68fde68d
4 changes: 4 additions & 0 deletions trunk/drivers/char/rtc.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/spinlock.h>
#include <linux/smp_lock.h>
#include <linux/sysctl.h>
#include <linux/wait.h>
#include <linux/bcd.h>
Expand Down Expand Up @@ -733,6 +734,7 @@ static int rtc_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
* needed here. Or anywhere else in this driver. */
static int rtc_open(struct inode *inode, struct file *file)
{
lock_kernel();
spin_lock_irq(&rtc_lock);

if (rtc_status & RTC_IS_OPEN)
Expand All @@ -742,10 +744,12 @@ static int rtc_open(struct inode *inode, struct file *file)

rtc_irq_data = 0;
spin_unlock_irq(&rtc_lock);
unlock_kernel();
return 0;

out_busy:
spin_unlock_irq(&rtc_lock);
unlock_kernel();
return -EBUSY;
}

Expand Down

0 comments on commit cf5360d

Please sign in to comment.