]> err.no Git - linux-2.6/blobdiff - fs/hfsplus/super.c
Blackfin arch: Do not pollute name space used in linux-2.6.x/sound
[linux-2.6] / fs / hfsplus / super.c
index 6d87a2a9534d4baa56dbd466016106b78d87daa9..ecf70dafb643718e7a91c1c8238290aa16c2fc5a 100644 (file)
@@ -466,7 +466,7 @@ static struct file_system_type hfsplus_fs_type = {
        .fs_flags       = FS_REQUIRES_DEV,
 };
 
-static void hfsplus_init_once(void *p, struct kmem_cache *cachep, unsigned long flags)
+static void hfsplus_init_once(struct kmem_cache *cachep, void *p)
 {
        struct hfsplus_inode_info *i = p;
 
@@ -479,7 +479,7 @@ static int __init init_hfsplus_fs(void)
 
        hfsplus_inode_cachep = kmem_cache_create("hfsplus_icache",
                HFSPLUS_INODE_SIZE, 0, SLAB_HWCACHE_ALIGN,
-               hfsplus_init_once, NULL);
+               hfsplus_init_once);
        if (!hfsplus_inode_cachep)
                return -ENOMEM;
        err = register_filesystem(&hfsplus_fs_type);