]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
lib/oid_registry.c: remove unused sprint_OID
authorDr. David Alan Gilbert <linux@treblig.org>
Thu, 1 May 2025 01:05:02 +0000 (02:05 +0100)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 12 May 2025 00:54:13 +0000 (17:54 -0700)
sprint_OID() was added as part of 2012's commit 4f73175d0375 ("X.509: Add
utility functions to render OIDs as strings") but it hasn't been used.
Remove it.

Note that there's also 'sprint_oid' (lower case) which is used in a lot of
places; that's left as is except for fixing its case in a comment.

Link: https://lkml.kernel.org/r/20250501010502.326472-1-linux@treblig.org
Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
include/linux/oid_registry.h
lib/oid_registry.c

index 6f9242259edc48d9f5a541fb34c6b41a66e3cb10..6de479ebbe5dadd0fd7f5d0d1d5350a060424579 100644 (file)
@@ -151,6 +151,5 @@ enum OID {
 extern enum OID look_up_OID(const void *data, size_t datasize);
 extern int parse_OID(const void *data, size_t datasize, enum OID *oid);
 extern int sprint_oid(const void *, size_t, char *, size_t);
-extern int sprint_OID(enum OID, char *, size_t);
 
 #endif /* _LINUX_OID_REGISTRY_H */
index fe6705cfd780e32307639ec559bfff2d13f5079a..9b757a117f09f7368336200bc4ba2d6b8ecb88c1 100644 (file)
@@ -117,7 +117,7 @@ int parse_OID(const void *data, size_t datasize, enum OID *oid)
 EXPORT_SYMBOL_GPL(parse_OID);
 
 /*
- * sprint_OID - Print an Object Identifier into a buffer
+ * sprint_oid - Print an Object Identifier into a buffer
  * @data: The encoded OID to print
  * @datasize: The size of the encoded OID
  * @buffer: The buffer to render into
@@ -173,26 +173,3 @@ bad:
        return -EBADMSG;
 }
 EXPORT_SYMBOL_GPL(sprint_oid);
-
-/**
- * sprint_OID - Print an Object Identifier into a buffer
- * @oid: The OID to print
- * @buffer: The buffer to render into
- * @bufsize: The size of the buffer
- *
- * The OID is rendered into the buffer in "a.b.c.d" format and the number of
- * bytes is returned.
- */
-int sprint_OID(enum OID oid, char *buffer, size_t bufsize)
-{
-       int ret;
-
-       BUG_ON(oid >= OID__NR);
-
-       ret = sprint_oid(oid_data + oid_index[oid],
-                        oid_index[oid + 1] - oid_index[oid],
-                        buffer, bufsize);
-       BUG_ON(ret == -EBADMSG);
-       return ret;
-}
-EXPORT_SYMBOL_GPL(sprint_OID);