diff options
-rw-r--r-- | fs/coda/psdev.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/fs/coda/psdev.c b/fs/coda/psdev.c index e3a0a4164d5d..dcc6aead70f5 100644 --- a/fs/coda/psdev.c +++ b/fs/coda/psdev.c | |||
@@ -373,21 +373,20 @@ out: | |||
373 | return err; | 373 | return err; |
374 | } | 374 | } |
375 | 375 | ||
376 | 376 | MODULE_AUTHOR("Jan Harkes, Peter J. Braam"); | |
377 | MODULE_AUTHOR("Peter J. Braam <braam@cs.cmu.edu>"); | 377 | MODULE_DESCRIPTION("Coda Distributed File System VFS interface"); |
378 | MODULE_ALIAS_CHARDEV_MAJOR(CODA_PSDEV_MAJOR); | ||
378 | MODULE_LICENSE("GPL"); | 379 | MODULE_LICENSE("GPL"); |
380 | #ifdef CONFIG_CODA_FS_OLD_API | ||
381 | MODULE_VERSION("5.3.21"); | ||
382 | #else | ||
383 | MODULE_VERSION("6.6"); | ||
384 | #endif | ||
379 | 385 | ||
380 | static int __init init_coda(void) | 386 | static int __init init_coda(void) |
381 | { | 387 | { |
382 | int status; | 388 | int status; |
383 | int i; | 389 | int i; |
384 | printk(KERN_INFO "Coda Kernel/Venus communications, " | ||
385 | #ifdef CONFIG_CODA_FS_OLD_API | ||
386 | "v5.3.20" | ||
387 | #else | ||
388 | "v6.0.0" | ||
389 | #endif | ||
390 | ", coda@cs.cmu.edu\n"); | ||
391 | 390 | ||
392 | status = coda_init_inodecache(); | 391 | status = coda_init_inodecache(); |
393 | if (status) | 392 | if (status) |