diff options
-rw-r--r-- | lib/oid_registry.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/oid_registry.c b/lib/oid_registry.c index d8de11f45908..318f382a010d 100644 --- a/lib/oid_registry.c +++ b/lib/oid_registry.c | |||
@@ -9,6 +9,7 @@ | |||
9 | * 2 of the Licence, or (at your option) any later version. | 9 | * 2 of the Licence, or (at your option) any later version. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include <linux/module.h> | ||
12 | #include <linux/export.h> | 13 | #include <linux/export.h> |
13 | #include <linux/oid_registry.h> | 14 | #include <linux/oid_registry.h> |
14 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
@@ -16,6 +17,10 @@ | |||
16 | #include <linux/bug.h> | 17 | #include <linux/bug.h> |
17 | #include "oid_registry_data.c" | 18 | #include "oid_registry_data.c" |
18 | 19 | ||
20 | MODULE_DESCRIPTION("OID Registry"); | ||
21 | MODULE_AUTHOR("Red Hat, Inc."); | ||
22 | MODULE_LICENSE("GPL"); | ||
23 | |||
19 | /** | 24 | /** |
20 | * look_up_OID - Find an OID registration for the specified data | 25 | * look_up_OID - Find an OID registration for the specified data |
21 | * @data: Binary representation of the OID | 26 | * @data: Binary representation of the OID |