Staging: lirc: fix PTR_ERR() check

This is a typo.  It's supposed to be IS_ERR() here instead of PTR_ERR().

Signed-off-by: Dan Carpenter <error27@gmail.com>
Acked-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Dan Carpenter 2010-10-15 05:42:35 +02:00 committed by Greg Kroah-Hartman
parent fcbf77bf87
commit 79e7c561ae
1 changed files with 1 additions and 1 deletions

View File

@ -386,7 +386,7 @@ static ssize_t vfd_write(struct file *file, const char *buf,
}
data_buf = memdup_user(buf, n_bytes);
if (PTR_ERR(data_buf)) {
if (IS_ERR(data_buf)) {
retval = PTR_ERR(data_buf);
goto exit;
}