forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jan Harkes <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information
Showing
1 changed file
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -373,21 +373,20 @@ static int init_coda_psdev(void) | |
return err; | ||
} | ||
|
||
|
||
MODULE_AUTHOR("Peter J. Braam <[email protected]>"); | ||
MODULE_AUTHOR("Jan Harkes, Peter J. Braam"); | ||
MODULE_DESCRIPTION("Coda Distributed File System VFS interface"); | ||
MODULE_ALIAS_CHARDEV_MAJOR(CODA_PSDEV_MAJOR); | ||
MODULE_LICENSE("GPL"); | ||
#ifdef CONFIG_CODA_FS_OLD_API | ||
MODULE_VERSION("5.3.21"); | ||
#else | ||
MODULE_VERSION("6.6"); | ||
#endif | ||
|
||
static int __init init_coda(void) | ||
{ | ||
int status; | ||
int i; | ||
printk(KERN_INFO "Coda Kernel/Venus communications, " | ||
#ifdef CONFIG_CODA_FS_OLD_API | ||
"v5.3.20" | ||
#else | ||
"v6.0.0" | ||
#endif | ||
", [email protected]\n"); | ||
|
||
status = coda_init_inodecache(); | ||
if (status) | ||
|