diff options
Diffstat (limited to 'modutils/modutils.h')
-rw-r--r-- | modutils/modutils.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modutils/modutils.h b/modutils/modutils.h index 32ee18b06..a609ea06a 100644 --- a/modutils/modutils.h +++ b/modutils/modutils.h | |||
@@ -16,8 +16,9 @@ | |||
16 | # pragma GCC visibility push(hidden) | 16 | # pragma GCC visibility push(hidden) |
17 | #endif | 17 | #endif |
18 | 18 | ||
19 | /* As defined in linux/include/linux/module.h */ | 19 | /* linux/include/linux/module.h has 64, but this is also used |
20 | #define MODULE_NAME_LEN 64 | 20 | * internally for the maximum alias name length, which can be quite long */ |
21 | #define MODULE_NAME_LEN 256 | ||
21 | 22 | ||
22 | const char *moderror(int err) FAST_FUNC; | 23 | const char *moderror(int err) FAST_FUNC; |
23 | llist_t *llist_find(llist_t *first, const char *str) FAST_FUNC; | 24 | llist_t *llist_find(llist_t *first, const char *str) FAST_FUNC; |