diff options
Diffstat (limited to 'arch/powerpc/platforms/pseries/dlpar.c')
-rw-r--r-- | arch/powerpc/platforms/pseries/dlpar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/pseries/dlpar.c b/arch/powerpc/platforms/pseries/dlpar.c index 2d0b4d68a40a..a2450b8a50a5 100644 --- a/arch/powerpc/platforms/pseries/dlpar.c +++ b/arch/powerpc/platforms/pseries/dlpar.c | |||
@@ -400,10 +400,10 @@ out: | |||
400 | static ssize_t dlpar_cpu_probe(const char *buf, size_t count) | 400 | static ssize_t dlpar_cpu_probe(const char *buf, size_t count) |
401 | { | 401 | { |
402 | struct device_node *dn, *parent; | 402 | struct device_node *dn, *parent; |
403 | unsigned long drc_index; | 403 | u32 drc_index; |
404 | int rc; | 404 | int rc; |
405 | 405 | ||
406 | rc = strict_strtoul(buf, 0, &drc_index); | 406 | rc = kstrtou32(buf, 0, &drc_index); |
407 | if (rc) | 407 | if (rc) |
408 | return -EINVAL; | 408 | return -EINVAL; |
409 | 409 | ||