Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 100302
b: refs/heads/master
c: 609f9e9
h: refs/heads/master
v: v3
  • Loading branch information
Jonathan Corbet committed Jun 20, 2008
1 parent f0fd566 commit 40f584e
Show file tree
Hide file tree
Showing 2 changed files with 4 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: d21c95c569c462da20d491b75d0a45bd70ddc1bf
refs/heads/master: 609f9e92b570f390a457a81effe0af6b758dc582
3 changes: 3 additions & 0 deletions trunk/drivers/spi/spidev.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include <linux/errno.h>
#include <linux/mutex.h>
#include <linux/slab.h>
#include <linux/smp_lock.h>

#include <linux/spi/spi.h>
#include <linux/spi/spidev.h>
Expand Down Expand Up @@ -393,6 +394,7 @@ static int spidev_open(struct inode *inode, struct file *filp)
struct spidev_data *spidev;
int status = -ENXIO;

lock_kernel();
mutex_lock(&device_list_lock);

list_for_each_entry(spidev, &device_list, device_entry) {
Expand All @@ -418,6 +420,7 @@ static int spidev_open(struct inode *inode, struct file *filp)
pr_debug("spidev: nothing for minor %d\n", iminor(inode));

mutex_unlock(&device_list_lock);
unlock_kernel();
return status;
}

Expand Down

0 comments on commit 40f584e

Please sign in to comment.