mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 17:47:41 +02:00
vsprintf: Revert "add simple_strntoul"
No users anymore and none should be in the first place.
This reverts commit fcc155008a.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://patch.msgid.link/20260331070519.5974-6-ddiss@suse.de
Acked-by: Petr Mladek <pmladek@suse.com>
Reviewed-by: David Disseldorp <ddiss@suse.de>
Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
ec03d259f6
commit
54d30551e4
|
|
@ -143,7 +143,6 @@ static inline int __must_check kstrtos32_from_user(const char __user *s, size_t
|
|||
*/
|
||||
|
||||
extern unsigned long simple_strtoul(const char *,char **,unsigned int);
|
||||
extern unsigned long simple_strntoul(const char *,char **,unsigned int,size_t);
|
||||
extern long simple_strtol(const char *,char **,unsigned int);
|
||||
extern unsigned long long simple_strtoull(const char *,char **,unsigned int);
|
||||
extern long long simple_strtoll(const char *,char **,unsigned int);
|
||||
|
|
|
|||
|
|
@ -129,13 +129,6 @@ unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base)
|
|||
}
|
||||
EXPORT_SYMBOL(simple_strtoul);
|
||||
|
||||
unsigned long simple_strntoul(const char *cp, char **endp, unsigned int base,
|
||||
size_t max_chars)
|
||||
{
|
||||
return simple_strntoull(cp, endp, base, max_chars);
|
||||
}
|
||||
EXPORT_SYMBOL(simple_strntoul);
|
||||
|
||||
/**
|
||||
* simple_strtol - convert a string to a signed long
|
||||
* @cp: The start of the string
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user