lirc: get rid of bogus checks
file argument is a struct file being passed to ->open() or already opened; none of the checks in lirc_get_pdata() can fail. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
0df4d6e5bd
commit
0990a97a1f
@ -752,16 +752,7 @@ EXPORT_SYMBOL(lirc_dev_fop_read);
|
||||
|
||||
void *lirc_get_pdata(struct file *file)
|
||||
{
|
||||
void *data = NULL;
|
||||
|
||||
if (file && file->f_dentry && file_inode(file) &&
|
||||
file_inode(file)->i_rdev) {
|
||||
struct irctl *ir;
|
||||
ir = irctls[iminor(file_inode(file))];
|
||||
data = ir->d.data;
|
||||
}
|
||||
|
||||
return data;
|
||||
return irctls[iminor(file_inode(file))]->d.data;
|
||||
}
|
||||
EXPORT_SYMBOL(lirc_get_pdata);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user