diff options
author | Felix Fietkau <nbd@nbd.name> | 2017-01-08 18:58:29 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-01-16 20:40:12 +0100 |
commit | 8ab057f5e4150affe44a630c53a113e74618ab09 (patch) | |
tree | 381cf81653ceaeafa402d30c9f69ab51bd796b41 /target/linux/generic/patches-3.18/504-yaffs-3.16-new-fops.patch | |
parent | 21591a336198beaffa11d40e3581215ef0fe67ec (diff) | |
download | upstream-8ab057f5e4150affe44a630c53a113e74618ab09.tar.gz upstream-8ab057f5e4150affe44a630c53a113e74618ab09.tar.bz2 upstream-8ab057f5e4150affe44a630c53a113e74618ab09.zip |
kernel: remove yaffs2 support, it is no longer needed
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'target/linux/generic/patches-3.18/504-yaffs-3.16-new-fops.patch')
-rw-r--r-- | target/linux/generic/patches-3.18/504-yaffs-3.16-new-fops.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/target/linux/generic/patches-3.18/504-yaffs-3.16-new-fops.patch b/target/linux/generic/patches-3.18/504-yaffs-3.16-new-fops.patch deleted file mode 100644 index 11c6da0516..0000000000 --- a/target/linux/generic/patches-3.18/504-yaffs-3.16-new-fops.patch +++ /dev/null @@ -1,25 +0,0 @@ ---- a/fs/yaffs2/yaffs_vfs.c -+++ b/fs/yaffs2/yaffs_vfs.c -@@ -774,7 +774,21 @@ static int yaffs_sync_object(struct file - } - - --#if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 22)) -+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0)) -+static const struct file_operations yaffs_file_operations = { -+ .read = new_sync_read, -+ .read_iter = generic_file_read_iter, -+ .write = new_sync_write, -+ .write_iter = generic_file_write_iter, -+ .mmap = generic_file_mmap, -+ .flush = yaffs_file_flush, -+ .fsync = yaffs_sync_object, -+ .splice_read = generic_file_splice_read, -+ .splice_write = iter_file_splice_write, -+ .llseek = generic_file_llseek, -+}; -+ -+#elif (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 22)) - static const struct file_operations yaffs_file_operations = { - .read = do_sync_read, - .write = do_sync_write, |