Commit ea23ec26 authored by Akinobu Mita's avatar Akinobu Mita Committed by David S. Miller

isdn: use simple_read_from_buffer()

Signed-off-by: default avatarAkinobu Mita <akinobu.mita@gmail.com>
Acked-by: default avatarKarsten Keil <kkeil@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 495b36b1
...@@ -207,30 +207,17 @@ hysdn_conf_write(struct file *file, const char __user *buf, size_t count, loff_t ...@@ -207,30 +207,17 @@ hysdn_conf_write(struct file *file, const char __user *buf, size_t count, loff_t
/* read conf file -> output card info data */ /* read conf file -> output card info data */
/*******************************************/ /*******************************************/
static ssize_t static ssize_t
hysdn_conf_read(struct file *file, char __user *buf, size_t count, loff_t * off) hysdn_conf_read(struct file *file, char __user *buf, size_t count, loff_t *off)
{ {
char *cp; char *cp;
int i;
if (file->f_mode & FMODE_READ) { if (!(file->f_mode & FMODE_READ))
if (!(cp = file->private_data)) return -EPERM; /* no permission to read */
return (-EFAULT); /* should never happen */
i = strlen(cp); /* get total string length */ if (!(cp = file->private_data))
if (*off < i) { return -EFAULT; /* should never happen */
/* still bytes to transfer */
cp += *off; /* point to desired data offset */ return simple_read_from_buffer(buf, count, off, cp, strlen(cp));
i -= *off; /* remaining length */
if (i > count)
i = count; /* limit length to transfer */
if (copy_to_user(buf, cp, i))
return (-EFAULT); /* copy error */
*off += i; /* adjust offset */
} else
return (0);
} else
return (-EPERM); /* no permission to read */
return (i);
} /* hysdn_conf_read */ } /* hysdn_conf_read */
/******************/ /******************/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment