Commit bd39f47f authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

typo fix, fixing a compile time bug due to the change over to the new

filesystem definition patches in -pre2 (changes pcihpfs_fs_type to 
pcihpfs_type).
parent 0ec12004
...@@ -414,7 +414,7 @@ static int get_mount (void) ...@@ -414,7 +414,7 @@ static int get_mount (void)
} }
spin_unlock (&mount_lock); spin_unlock (&mount_lock);
mnt = kern_mount (&pcihpfs_fs_type); mnt = kern_mount (&pcihpfs_type);
if (IS_ERR(mnt)) { if (IS_ERR(mnt)) {
err ("could not mount the fs...erroring out!\n"); err ("could not mount the fs...erroring out!\n");
return -ENODEV; return -ENODEV;
...@@ -1114,7 +1114,7 @@ static int __init pci_hotplug_init (void) ...@@ -1114,7 +1114,7 @@ static int __init pci_hotplug_init (void)
spin_lock_init(&list_lock); spin_lock_init(&list_lock);
dbg("registering filesystem.\n"); dbg("registering filesystem.\n");
result = register_filesystem(&pcihpfs_fs_type); result = register_filesystem(&pcihpfs_type);
if (result) { if (result) {
err("register_filesystem failed with %d\n", result); err("register_filesystem failed with %d\n", result);
goto exit; goto exit;
...@@ -1128,7 +1128,7 @@ static int __init pci_hotplug_init (void) ...@@ -1128,7 +1128,7 @@ static int __init pci_hotplug_init (void)
static void __exit pci_hotplug_exit (void) static void __exit pci_hotplug_exit (void)
{ {
unregister_filesystem(&pcihpfs_fs_type); unregister_filesystem(&pcihpfs_type);
} }
module_init(pci_hotplug_init); module_init(pci_hotplug_init);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment