mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
6c118efc01
Changelog: https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.15.140 Removed upstreamed: mvebu/patches-5.15/106-Revert-i2c-pxa-move-to-generic-GPIO-recovery.patch[1] All other patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.140&id=06d320ca170b4e59bb261e2ce3ffe84e9154d42b Build system: x86_64 Build-tested: ramips/tplink_archer-a6-v3 Run-tested: ramips/tplink_archer-a6-v3 Signed-off-by: John Audia <therealgraysky@proton.me>
63 lines
2.3 KiB
Diff
63 lines
2.3 KiB
Diff
From 118fe2c88b35482711adeee0d8758bddfe958701 Mon Sep 17 00:00:00 2001
|
|
From: Aleksander Jan Bajkowski <olek2@wp.pl>
|
|
Date: Sat, 6 May 2023 14:32:00 +0200
|
|
Subject: [PATCH] mtd: cfi_cmdset_0001: Disable write buffer functions if
|
|
FORCE_WORD_WRITE is 1
|
|
|
|
Some write buffer functions are not used when FORCE_WORD_WRITE is set to 1.
|
|
So the compile warning messages are output if FORCE_WORD_WRITE is 1. To
|
|
resolve this disable the write buffer functions if FORCE_WORD_WRITE is 1.
|
|
|
|
This is similar fix to: 557c759036fc3976a5358cef23e65a263853b93f.
|
|
|
|
Signed-off-by: Aleksander Jan Bajkowski <olek2@wp.pl>
|
|
---
|
|
drivers/mtd/chips/cfi_cmdset_0001.c | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
--- a/drivers/mtd/chips/cfi_cmdset_0001.c
|
|
+++ b/drivers/mtd/chips/cfi_cmdset_0001.c
|
|
@@ -61,8 +61,10 @@
|
|
|
|
static int cfi_intelext_read (struct mtd_info *, loff_t, size_t, size_t *, u_char *);
|
|
static int cfi_intelext_write_words(struct mtd_info *, loff_t, size_t, size_t *, const u_char *);
|
|
+#if !FORCE_WORD_WRITE
|
|
static int cfi_intelext_write_buffers(struct mtd_info *, loff_t, size_t, size_t *, const u_char *);
|
|
static int cfi_intelext_writev(struct mtd_info *, const struct kvec *, unsigned long, loff_t, size_t *);
|
|
+#endif
|
|
static int cfi_intelext_erase_varsize(struct mtd_info *, struct erase_info *);
|
|
static void cfi_intelext_sync (struct mtd_info *);
|
|
static int cfi_intelext_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
|
|
@@ -304,6 +306,7 @@ static void fixup_use_point(struct mtd_i
|
|
}
|
|
}
|
|
|
|
+#if !FORCE_WORD_WRITE
|
|
static void fixup_use_write_buffers(struct mtd_info *mtd)
|
|
{
|
|
struct map_info *map = mtd->priv;
|
|
@@ -314,6 +317,7 @@ static void fixup_use_write_buffers(stru
|
|
mtd->_writev = cfi_intelext_writev;
|
|
}
|
|
}
|
|
+#endif /* !FORCE_WORD_WRITE */
|
|
|
|
/*
|
|
* Some chips power-up with all sectors locked by default.
|
|
@@ -1719,6 +1723,7 @@ static int cfi_intelext_write_words (str
|
|
}
|
|
|
|
|
|
+#if !FORCE_WORD_WRITE
|
|
static int __xipram do_write_buffer(struct map_info *map, struct flchip *chip,
|
|
unsigned long adr, const struct kvec **pvec,
|
|
unsigned long *pvec_seek, int len)
|
|
@@ -1947,6 +1952,7 @@ static int cfi_intelext_write_buffers (s
|
|
|
|
return cfi_intelext_writev(mtd, &vec, 1, to, retlen);
|
|
}
|
|
+#endif /* !FORCE_WORD_WRITE */
|
|
|
|
static int __xipram do_erase_oneblock(struct map_info *map, struct flchip *chip,
|
|
unsigned long adr, int len, void *thunk)
|