kstrtox: convert drivers/isdn/
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
dffc6b2432
commit
19eccc2bc6
@@ -155,7 +155,6 @@ put_log_buffer(hysdn_card * card, char *cp)
|
||||
static ssize_t
|
||||
hysdn_log_write(struct file *file, const char __user *buf, size_t count, loff_t * off)
|
||||
{
|
||||
unsigned long u = 0;
|
||||
int rc;
|
||||
unsigned char valbuf[128];
|
||||
hysdn_card *card = file->private_data;
|
||||
@@ -167,12 +166,10 @@ hysdn_log_write(struct file *file, const char __user *buf, size_t count, loff_t
|
||||
|
||||
valbuf[count] = 0; /* terminating 0 */
|
||||
|
||||
rc = strict_strtoul(valbuf, 0, &u);
|
||||
|
||||
if (rc == 0) {
|
||||
card->debug_flags = u; /* remember debug flags */
|
||||
hysdn_addlog(card, "debug set to 0x%lx", card->debug_flags);
|
||||
}
|
||||
rc = kstrtoul(valbuf, 0, &card->debug_flags);
|
||||
if (rc < 0)
|
||||
return rc;
|
||||
hysdn_addlog(card, "debug set to 0x%lx", card->debug_flags);
|
||||
return (count);
|
||||
} /* hysdn_log_write */
|
||||
|
||||
|
Reference in New Issue
Block a user