mirror of
https://github.com/drasko/codezero.git
synced 2026-04-25 05:09:04 +02:00
Removed linux linked list dependency.
This commit is contained in:
@@ -23,7 +23,7 @@ struct file_system_type sfs_type = {
|
||||
};
|
||||
|
||||
/* Registers sfs as an available filesystem type */
|
||||
void sfs_register_fstype(struct list_head *fslist)
|
||||
void sfs_register_fstype(struct link *fslist)
|
||||
{
|
||||
list_add(&sfs_type.list, fslist);
|
||||
list_insert(&sfs_type.list, fslist);
|
||||
}
|
||||
|
||||
@@ -108,6 +108,6 @@ struct sfs_dentry {
|
||||
} __attribute__ ((__packed__));
|
||||
|
||||
|
||||
void sfs_register_type(struct list_head *);
|
||||
void sfs_register_type(struct link *);
|
||||
|
||||
#endif /* __C0FS_LAYOUT_H__ */
|
||||
|
||||
Reference in New Issue
Block a user