On Fri, 2021-10-08 at 13:37 +0200, Matthias Brugger wrote:
On 08/10/2021 04:05, Yongqiang Niu wrote:
base v5.15
Yongqiang Niu (2): soc: mediatek: mmsys: add comp OVL_2L2/POSTMASK/RDMA4 soc: mediatek: mmsys: Add mt8192 mmsys routing table
I'm a bit puzzled that you keep on sending this series while I accepted an older one long time ago:
https://lore.kernel.org/lkml/e4afa712-9936-15fc-ad43-576948758f6c@gmail.com/
As you don't provide a changelog I'm not able to find out what has changed. I also asked you to double check if the fixup I did was correct, but you never answered.
If there are anything to fix for this series that's not in my tree yet, please send a follow-up patch.
Regards, Matthias
the fixup you have add is correct. this version only adjust the header filer include sequence in mtk- mmsys.c
original version
#include "mt8365-mmsys.h" #include "mt8192-mmsys.h"
new version #include "mt8192-mmsys.h" #include "mt8365-mmsys.h"
drivers/soc/mediatek/mt8192-mmsys.h | 77 ++++++++++++++++++++++++++ drivers/soc/mediatek/mtk-mmsys.c | 11 ++++ include/linux/soc/mediatek/mtk-mmsys.h | 3 + 3 files changed, 91 insertions(+) create mode 100644 drivers/soc/mediatek/mt8192-mmsys.h