From: kernel test robot <lkp@intel.com>
To: Keguang Zhang via B4 Relay
<devnull+keguang.zhang.gmail.com@kernel.org>,
Keguang Zhang <keguang.zhang@gmail.com>,
Vinod Koul <vkoul@kernel.org>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Conor Dooley <conor+dt@kernel.org>
Cc: oe-kbuild-all@lists.linux.dev, linux-mips@vger.kernel.org,
dmaengine@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
Jiaxun Yang <jiaxun.yang@flygoat.com>
Subject: Re: [PATCH RESEND v9 2/2] dmaengine: Loongson1: Add Loongson-1 APB DMA driver
Date: Sun, 14 Jul 2024 05:11:14 +0800 [thread overview]
Message-ID: <202407140536.iIizeGVy-lkp@intel.com> (raw)
In-Reply-To: <20240711-loongson1-dma-v9-2-5ce8b5e85a56@gmail.com>
Hi Keguang,
kernel test robot noticed the following build warnings:
[auto build test WARNING on d35b2284e966c0bef3e2182a5c5ea02177dd32e4]
url: https://github.com/intel-lab-lkp/linux/commits/Keguang-Zhang-via-B4-Relay/dt-bindings-dma-Add-Loongson-1-APB-DMA/20240711-191657
base: d35b2284e966c0bef3e2182a5c5ea02177dd32e4
patch link: https://lore.kernel.org/r/20240711-loongson1-dma-v9-2-5ce8b5e85a56%40gmail.com
patch subject: [PATCH RESEND v9 2/2] dmaengine: Loongson1: Add Loongson-1 APB DMA driver
config: i386-allmodconfig (https://download.01.org/0day-ci/archive/20240714/202407140536.iIizeGVy-lkp@intel.com/config)
compiler: gcc-13 (Ubuntu 13.2.0-4ubuntu3) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240714/202407140536.iIizeGVy-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202407140536.iIizeGVy-lkp@intel.com/
All warnings (new ones prefixed by >>):
In file included from include/linux/printk.h:598,
from include/asm-generic/bug.h:22,
from arch/x86/include/asm/bug.h:87,
from include/linux/bug.h:5,
from include/linux/fortify-string.h:6,
from include/linux/string.h:374,
from include/linux/scatterlist.h:5,
from include/linux/dmapool.h:14,
from drivers/dma/loongson1-apb-dma.c:8:
drivers/dma/loongson1-apb-dma.c: In function 'ls1x_dma_start':
>> drivers/dma/loongson1-apb-dma.c:137:34: warning: format '%x' expects argument of type 'unsigned int', but argument 5 has type 'dma_addr_t' {aka 'long long unsigned int'} [-Wformat=]
137 | dev_dbg(chan2dev(dchan), "cookie=%d, starting hwdesc=%x\n",
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/dynamic_debug.h:224:29: note: in definition of macro '__dynamic_func_call_cls'
224 | func(&id, ##__VA_ARGS__); \
| ^~~~~~~~~~~
include/linux/dynamic_debug.h:250:9: note: in expansion of macro '_dynamic_func_call_cls'
250 | _dynamic_func_call_cls(_DPRINTK_CLASS_DFLT, fmt, func, ##__VA_ARGS__)
| ^~~~~~~~~~~~~~~~~~~~~~
include/linux/dynamic_debug.h:273:9: note: in expansion of macro '_dynamic_func_call'
273 | _dynamic_func_call(fmt, __dynamic_dev_dbg, \
| ^~~~~~~~~~~~~~~~~~
include/linux/dev_printk.h:165:9: note: in expansion of macro 'dynamic_dev_dbg'
165 | dynamic_dev_dbg(dev, dev_fmt(fmt), ##__VA_ARGS__)
| ^~~~~~~~~~~~~~~
include/linux/dev_printk.h:165:30: note: in expansion of macro 'dev_fmt'
165 | dynamic_dev_dbg(dev, dev_fmt(fmt), ##__VA_ARGS__)
| ^~~~~~~
drivers/dma/loongson1-apb-dma.c:137:9: note: in expansion of macro 'dev_dbg'
137 | dev_dbg(chan2dev(dchan), "cookie=%d, starting hwdesc=%x\n",
| ^~~~~~~
drivers/dma/loongson1-apb-dma.c:137:63: note: format string is defined here
137 | dev_dbg(chan2dev(dchan), "cookie=%d, starting hwdesc=%x\n",
| ~^
| |
| unsigned int
| %llx
vim +137 drivers/dma/loongson1-apb-dma.c
130
131 static inline int ls1x_dma_start(struct ls1x_dma_chan *chan,
132 dma_addr_t *hwdesc_phys)
133 {
134 struct dma_chan *dchan = &chan->vchan.chan;
135 int val, ret;
136
> 137 dev_dbg(chan2dev(dchan), "cookie=%d, starting hwdesc=%x\n",
138 dchan->cookie, *hwdesc_phys);
139
140 val = *hwdesc_phys & DMA_ADDR_MASK;
141 val |= DMA_START;
142 val |= dchan->chan_id;
143 chan_writel(chan, DMA_CTRL, val);
144 ret = readl_poll_timeout(chan->reg_base + DMA_CTRL, val,
145 !(val & DMA_START), 0, 3000);
146 if (ret)
147 dev_err(chan2dev(dchan), "failed to start DMA\n");
148
149 return ret;
150 }
151
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-07-13 21:11 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-11 10:55 [PATCH RESEND v9 0/2] Add support for Loongson1 APB DMA Keguang Zhang via B4 Relay
2024-07-11 10:55 ` [PATCH RESEND v9 1/2] dt-bindings: dma: Add Loongson-1 " Keguang Zhang via B4 Relay
2024-07-11 10:55 ` [PATCH RESEND v9 2/2] dmaengine: Loongson1: Add Loongson-1 APB DMA driver Keguang Zhang via B4 Relay
2024-07-13 21:11 ` kernel test robot [this message]
2024-07-25 5:57 ` Vinod Koul
2024-07-25 10:07 ` Keguang Zhang
2024-07-13 23:24 ` kernel test robot
2024-07-12 4:22 ` [PATCH RESEND v9 0/2] Add support for Loongson1 APB DMA Huacai Chen
2024-07-12 6:23 ` Keguang Zhang
2024-07-15 6:39 ` Huacai Chen
2024-07-15 6:55 ` Keguang Zhang
2024-07-15 7:00 ` Jiaxun Yang
2024-07-16 9:40 ` Huacai Chen
2024-07-16 13:10 ` Jiaxun Yang
2024-07-17 13:06 ` Huacai Chen
2024-07-17 14:20 ` Jiaxun Yang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202407140536.iIizeGVy-lkp@intel.com \
--to=lkp@intel.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=devnull+keguang.zhang.gmail.com@kernel.org \
--cc=dmaengine@vger.kernel.org \
--cc=jiaxun.yang@flygoat.com \
--cc=keguang.zhang@gmail.com \
--cc=krzk@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=robh@kernel.org \
--cc=vkoul@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).