mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
ssb: sprom: replace strict_strtoul() with kstrtoul()
The usage of strict_strtoul() is not preferred, because strict_strtoul() is obsolete. Thus, kstrtoul() should be used. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
27d7f47756
commit
6b1ea4b299
@ -54,7 +54,7 @@ static int hex2sprom(u16 *sprom, const char *dump, size_t len,
|
||||
while (cnt < sprom_size_words) {
|
||||
memcpy(tmp, dump, 4);
|
||||
dump += 4;
|
||||
err = strict_strtoul(tmp, 16, &parsed);
|
||||
err = kstrtoul(tmp, 16, &parsed);
|
||||
if (err)
|
||||
return err;
|
||||
sprom[cnt++] = swab16((u16)parsed);
|
||||
|
Loading…
Reference in New Issue
Block a user