Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43581
b: refs/heads/master
c: d1f2297
h: refs/heads/master
i:
  43579: 3316f57
v: v3
  • Loading branch information
Josef Sipek authored and Linus Torvalds committed Dec 8, 2006
1 parent 69092b8 commit 78acc3d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4482dfad69d783d1df03ed3952838451a249985e
refs/heads/master: d1f229744ece0b7aa7ce89ecd1fb598b90305d5b
10 changes: 5 additions & 5 deletions trunk/drivers/telephony/ixj.c
Original file line number Diff line number Diff line change
Expand Up @@ -2747,7 +2747,7 @@ static void alaw2ulaw(unsigned char *buff, unsigned long len)
static ssize_t ixj_read(struct file * file_p, char __user *buf, size_t length, loff_t * ppos)
{
unsigned long i = *ppos;
IXJ * j = get_ixj(NUM(file_p->f_dentry->d_inode));
IXJ * j = get_ixj(NUM(file_p->f_path.dentry->d_inode));

DECLARE_WAITQUEUE(wait, current);

Expand Down Expand Up @@ -2804,7 +2804,7 @@ static ssize_t ixj_enhanced_read(struct file * file_p, char __user *buf, size_t
{
int pre_retval;
ssize_t read_retval = 0;
IXJ *j = get_ixj(NUM(file_p->f_dentry->d_inode));
IXJ *j = get_ixj(NUM(file_p->f_path.dentry->d_inode));

pre_retval = ixj_PreRead(j, 0L);
switch (pre_retval) {
Expand Down Expand Up @@ -2883,7 +2883,7 @@ static ssize_t ixj_enhanced_write(struct file * file_p, const char __user *buf,
int pre_retval;
ssize_t write_retval = 0;

IXJ *j = get_ixj(NUM(file_p->f_dentry->d_inode));
IXJ *j = get_ixj(NUM(file_p->f_path.dentry->d_inode));

pre_retval = ixj_PreWrite(j, 0L);
switch (pre_retval) {
Expand Down Expand Up @@ -4582,7 +4582,7 @@ static unsigned int ixj_poll(struct file *file_p, poll_table * wait)
{
unsigned int mask = 0;

IXJ *j = get_ixj(NUM(file_p->f_dentry->d_inode));
IXJ *j = get_ixj(NUM(file_p->f_path.dentry->d_inode));

poll_wait(file_p, &(j->poll_q), wait);
if (j->read_buffer_ready > 0)
Expand Down Expand Up @@ -6657,7 +6657,7 @@ static int ixj_ioctl(struct inode *inode, struct file *file_p, unsigned int cmd,

static int ixj_fasync(int fd, struct file *file_p, int mode)
{
IXJ *j = get_ixj(NUM(file_p->f_dentry->d_inode));
IXJ *j = get_ixj(NUM(file_p->f_path.dentry->d_inode));

return fasync_helper(fd, file_p, mode, &j->async_queue);
}
Expand Down

0 comments on commit 78acc3d

Please sign in to comment.