From: kernel test robot <lkp@intel.com>
To: "Arseniy Krasnov" <AVKrasnov@sberdevices.ru>,
"Miquel Raynal" <miquel.raynal@bootlin.com>,
"Richard Weinberger" <richard@nod.at>,
"Vignesh Raghavendra" <vigneshr@ti.com>,
"Sumit Semwal" <sumit.semwal@linaro.org>,
"Christian König" <christian.koenig@amd.com>
Cc: oe-kbuild-all@lists.linux.dev, oxffffaa@gmail.com,
kernel@sberdevices.ru, linux-mtd@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-media@vger.kernel.org,
dri-devel@lists.freedesktop.org, linaro-mm-sig@lists.linaro.org
Subject: Re: [PATCH v1] mtd: rawnand: macronix: OTP access for MX30LFxG18AC
Date: Wed, 26 Apr 2023 17:21:55 +0800 [thread overview]
Message-ID: <202304261704.eyrD5KVk-lkp@intel.com> (raw)
In-Reply-To: <20230426072455.3887717-1-AVKrasnov@sberdevices.ru>
Hi Arseniy,
kernel test robot noticed the following build errors:
[auto build test ERROR on mtd/nand/next]
[also build test ERROR on linus/master v6.3 next-20230425]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Arseniy-Krasnov/mtd-rawnand-macronix-OTP-access-for-MX30LFxG18AC/20230426-153143
base: https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
patch link: https://lore.kernel.org/r/20230426072455.3887717-1-AVKrasnov%40sberdevices.ru
patch subject: [PATCH v1] mtd: rawnand: macronix: OTP access for MX30LFxG18AC
config: m68k-allyesconfig (https://download.01.org/0day-ci/archive/20230426/202304261704.eyrD5KVk-lkp@intel.com/config)
compiler: m68k-linux-gcc (GCC) 12.1.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/intel-lab-lkp/linux/commit/3529f3465e99379489b59c035a8a0506c3756ef4
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Arseniy-Krasnov/mtd-rawnand-macronix-OTP-access-for-MX30LFxG18AC/20230426-153143
git checkout 3529f3465e99379489b59c035a8a0506c3756ef4
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=m68k olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=m68k SHELL=/bin/bash drivers/mtd/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202304261704.eyrD5KVk-lkp@intel.com/
All error/warnings (new ones prefixed by >>):
drivers/mtd/nand/raw/nand_macronix.c: In function '__macronix_30lfxg18ac_rw_otp':
>> drivers/mtd/nand/raw/nand_macronix.c:384:19: error: implicit declaration of function 'kmalloc'; did you mean 'mm_alloc'? [-Werror=implicit-function-declaration]
384 | dma_buf = kmalloc(MACRONIX_30LFXG18AC_OTP_PAGE_SIZE, GFP_KERNEL);
| ^~~~~~~
| mm_alloc
>> drivers/mtd/nand/raw/nand_macronix.c:384:17: warning: assignment to 'void *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
384 | dma_buf = kmalloc(MACRONIX_30LFXG18AC_OTP_PAGE_SIZE, GFP_KERNEL);
| ^
>> drivers/mtd/nand/raw/nand_macronix.c:437:9: error: implicit declaration of function 'kfree'; did you mean 'kvfree'? [-Werror=implicit-function-declaration]
437 | kfree(dma_buf);
| ^~~~~
| kvfree
cc1: some warnings being treated as errors
vim +384 drivers/mtd/nand/raw/nand_macronix.c
366
367 static int __macronix_30lfxg18ac_rw_otp(struct mtd_info *mtd,
368 loff_t offs_in_flash,
369 size_t len, size_t *retlen,
370 u_char *buf, bool write)
371 {
372 struct nand_chip *nand;
373 size_t bytes_handled;
374 unsigned long page;
375 off_t offs_in_page;
376 void *dma_buf;
377 int ret;
378
379 /* 'nand_prog/read_page_op()' may use 'buf' as DMA buffer,
380 * so allocate properly aligned memory for it. This is
381 * needed because cross page accesses may lead to unaligned
382 * buffer address for DMA.
383 */
> 384 dma_buf = kmalloc(MACRONIX_30LFXG18AC_OTP_PAGE_SIZE, GFP_KERNEL);
385 if (!dma_buf)
386 return -ENOMEM;
387
388 nand = mtd_to_nand(mtd);
389 nand_select_target(nand, 0);
390
391 ret = macronix_30lfxg18ac_otp_enable(nand);
392 if (ret)
393 goto out_otp;
394
395 page = offs_in_flash;
396 /* 'page' will be result of division. */
397 offs_in_page = do_div(page, MACRONIX_30LFXG18AC_OTP_PAGE_SIZE);
398 bytes_handled = 0;
399
400 while (bytes_handled < len &&
401 page < MACRONIX_30LFXG18AC_OTP_PAGES) {
402 size_t bytes_to_handle;
403
404 bytes_to_handle = min_t(size_t, len - bytes_handled,
405 MACRONIX_30LFXG18AC_OTP_PAGE_SIZE -
406 offs_in_page);
407
408 if (write) {
409 memcpy(dma_buf, &buf[bytes_handled], bytes_to_handle);
410 ret = nand_prog_page_op(nand, page, offs_in_page,
411 dma_buf, bytes_to_handle);
412 } else {
413 ret = nand_read_page_op(nand, page, offs_in_page,
414 dma_buf, bytes_to_handle);
415 if (!ret)
416 memcpy(&buf[bytes_handled], dma_buf,
417 bytes_to_handle);
418 }
419 if (ret)
420 goto out_otp;
421
422 bytes_handled += bytes_to_handle;
423 offs_in_page = 0;
424 page++;
425 }
426
427 *retlen = bytes_handled;
428
429 out_otp:
430 if (ret)
431 dev_err(&mtd->dev, "failed to perform OTP IO: %i\n", ret);
432
433 ret = macronix_30lfxg18ac_otp_disable(nand);
434 WARN(ret, "failed to leave OTP mode after %s\n",
435 write ? "write" : "read");
436 nand_deselect_target(nand);
> 437 kfree(dma_buf);
438
439 return ret;
440 }
441
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: "Arseniy Krasnov" <AVKrasnov@sberdevices.ru>,
"Miquel Raynal" <miquel.raynal@bootlin.com>,
"Richard Weinberger" <richard@nod.at>,
"Vignesh Raghavendra" <vigneshr@ti.com>,
"Sumit Semwal" <sumit.semwal@linaro.org>,
"Christian König" <christian.koenig@amd.com>
Cc: oe-kbuild-all@lists.linux.dev, oxffffaa@gmail.com,
kernel@sberdevices.ru, linux-mtd@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-media@vger.kernel.org,
dri-devel@lists.freedesktop.org, linaro-mm-sig@lists.linaro.org
Subject: Re: [PATCH v1] mtd: rawnand: macronix: OTP access for MX30LFxG18AC
Date: Wed, 26 Apr 2023 17:21:55 +0800 [thread overview]
Message-ID: <202304261704.eyrD5KVk-lkp@intel.com> (raw)
In-Reply-To: <20230426072455.3887717-1-AVKrasnov@sberdevices.ru>
Hi Arseniy,
kernel test robot noticed the following build errors:
[auto build test ERROR on mtd/nand/next]
[also build test ERROR on linus/master v6.3 next-20230425]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Arseniy-Krasnov/mtd-rawnand-macronix-OTP-access-for-MX30LFxG18AC/20230426-153143
base: https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
patch link: https://lore.kernel.org/r/20230426072455.3887717-1-AVKrasnov%40sberdevices.ru
patch subject: [PATCH v1] mtd: rawnand: macronix: OTP access for MX30LFxG18AC
config: m68k-allyesconfig (https://download.01.org/0day-ci/archive/20230426/202304261704.eyrD5KVk-lkp@intel.com/config)
compiler: m68k-linux-gcc (GCC) 12.1.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/intel-lab-lkp/linux/commit/3529f3465e99379489b59c035a8a0506c3756ef4
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Arseniy-Krasnov/mtd-rawnand-macronix-OTP-access-for-MX30LFxG18AC/20230426-153143
git checkout 3529f3465e99379489b59c035a8a0506c3756ef4
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=m68k olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=m68k SHELL=/bin/bash drivers/mtd/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202304261704.eyrD5KVk-lkp@intel.com/
All error/warnings (new ones prefixed by >>):
drivers/mtd/nand/raw/nand_macronix.c: In function '__macronix_30lfxg18ac_rw_otp':
>> drivers/mtd/nand/raw/nand_macronix.c:384:19: error: implicit declaration of function 'kmalloc'; did you mean 'mm_alloc'? [-Werror=implicit-function-declaration]
384 | dma_buf = kmalloc(MACRONIX_30LFXG18AC_OTP_PAGE_SIZE, GFP_KERNEL);
| ^~~~~~~
| mm_alloc
>> drivers/mtd/nand/raw/nand_macronix.c:384:17: warning: assignment to 'void *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
384 | dma_buf = kmalloc(MACRONIX_30LFXG18AC_OTP_PAGE_SIZE, GFP_KERNEL);
| ^
>> drivers/mtd/nand/raw/nand_macronix.c:437:9: error: implicit declaration of function 'kfree'; did you mean 'kvfree'? [-Werror=implicit-function-declaration]
437 | kfree(dma_buf);
| ^~~~~
| kvfree
cc1: some warnings being treated as errors
vim +384 drivers/mtd/nand/raw/nand_macronix.c
366
367 static int __macronix_30lfxg18ac_rw_otp(struct mtd_info *mtd,
368 loff_t offs_in_flash,
369 size_t len, size_t *retlen,
370 u_char *buf, bool write)
371 {
372 struct nand_chip *nand;
373 size_t bytes_handled;
374 unsigned long page;
375 off_t offs_in_page;
376 void *dma_buf;
377 int ret;
378
379 /* 'nand_prog/read_page_op()' may use 'buf' as DMA buffer,
380 * so allocate properly aligned memory for it. This is
381 * needed because cross page accesses may lead to unaligned
382 * buffer address for DMA.
383 */
> 384 dma_buf = kmalloc(MACRONIX_30LFXG18AC_OTP_PAGE_SIZE, GFP_KERNEL);
385 if (!dma_buf)
386 return -ENOMEM;
387
388 nand = mtd_to_nand(mtd);
389 nand_select_target(nand, 0);
390
391 ret = macronix_30lfxg18ac_otp_enable(nand);
392 if (ret)
393 goto out_otp;
394
395 page = offs_in_flash;
396 /* 'page' will be result of division. */
397 offs_in_page = do_div(page, MACRONIX_30LFXG18AC_OTP_PAGE_SIZE);
398 bytes_handled = 0;
399
400 while (bytes_handled < len &&
401 page < MACRONIX_30LFXG18AC_OTP_PAGES) {
402 size_t bytes_to_handle;
403
404 bytes_to_handle = min_t(size_t, len - bytes_handled,
405 MACRONIX_30LFXG18AC_OTP_PAGE_SIZE -
406 offs_in_page);
407
408 if (write) {
409 memcpy(dma_buf, &buf[bytes_handled], bytes_to_handle);
410 ret = nand_prog_page_op(nand, page, offs_in_page,
411 dma_buf, bytes_to_handle);
412 } else {
413 ret = nand_read_page_op(nand, page, offs_in_page,
414 dma_buf, bytes_to_handle);
415 if (!ret)
416 memcpy(&buf[bytes_handled], dma_buf,
417 bytes_to_handle);
418 }
419 if (ret)
420 goto out_otp;
421
422 bytes_handled += bytes_to_handle;
423 offs_in_page = 0;
424 page++;
425 }
426
427 *retlen = bytes_handled;
428
429 out_otp:
430 if (ret)
431 dev_err(&mtd->dev, "failed to perform OTP IO: %i\n", ret);
432
433 ret = macronix_30lfxg18ac_otp_disable(nand);
434 WARN(ret, "failed to leave OTP mode after %s\n",
435 write ? "write" : "read");
436 nand_deselect_target(nand);
> 437 kfree(dma_buf);
438
439 return ret;
440 }
441
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: "Arseniy Krasnov" <AVKrasnov@sberdevices.ru>,
"Miquel Raynal" <miquel.raynal@bootlin.com>,
"Richard Weinberger" <richard@nod.at>,
"Vignesh Raghavendra" <vigneshr@ti.com>,
"Sumit Semwal" <sumit.semwal@linaro.org>,
"Christian König" <christian.koenig@amd.com>
Cc: linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
linaro-mm-sig@lists.linaro.org, linux-mtd@lists.infradead.org,
oxffffaa@gmail.com, oe-kbuild-all@lists.linux.dev,
kernel@sberdevices.ru, linux-media@vger.kernel.org
Subject: Re: [PATCH v1] mtd: rawnand: macronix: OTP access for MX30LFxG18AC
Date: Wed, 26 Apr 2023 17:21:55 +0800 [thread overview]
Message-ID: <202304261704.eyrD5KVk-lkp@intel.com> (raw)
In-Reply-To: <20230426072455.3887717-1-AVKrasnov@sberdevices.ru>
Hi Arseniy,
kernel test robot noticed the following build errors:
[auto build test ERROR on mtd/nand/next]
[also build test ERROR on linus/master v6.3 next-20230425]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Arseniy-Krasnov/mtd-rawnand-macronix-OTP-access-for-MX30LFxG18AC/20230426-153143
base: https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
patch link: https://lore.kernel.org/r/20230426072455.3887717-1-AVKrasnov%40sberdevices.ru
patch subject: [PATCH v1] mtd: rawnand: macronix: OTP access for MX30LFxG18AC
config: m68k-allyesconfig (https://download.01.org/0day-ci/archive/20230426/202304261704.eyrD5KVk-lkp@intel.com/config)
compiler: m68k-linux-gcc (GCC) 12.1.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/intel-lab-lkp/linux/commit/3529f3465e99379489b59c035a8a0506c3756ef4
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Arseniy-Krasnov/mtd-rawnand-macronix-OTP-access-for-MX30LFxG18AC/20230426-153143
git checkout 3529f3465e99379489b59c035a8a0506c3756ef4
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=m68k olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=m68k SHELL=/bin/bash drivers/mtd/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202304261704.eyrD5KVk-lkp@intel.com/
All error/warnings (new ones prefixed by >>):
drivers/mtd/nand/raw/nand_macronix.c: In function '__macronix_30lfxg18ac_rw_otp':
>> drivers/mtd/nand/raw/nand_macronix.c:384:19: error: implicit declaration of function 'kmalloc'; did you mean 'mm_alloc'? [-Werror=implicit-function-declaration]
384 | dma_buf = kmalloc(MACRONIX_30LFXG18AC_OTP_PAGE_SIZE, GFP_KERNEL);
| ^~~~~~~
| mm_alloc
>> drivers/mtd/nand/raw/nand_macronix.c:384:17: warning: assignment to 'void *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
384 | dma_buf = kmalloc(MACRONIX_30LFXG18AC_OTP_PAGE_SIZE, GFP_KERNEL);
| ^
>> drivers/mtd/nand/raw/nand_macronix.c:437:9: error: implicit declaration of function 'kfree'; did you mean 'kvfree'? [-Werror=implicit-function-declaration]
437 | kfree(dma_buf);
| ^~~~~
| kvfree
cc1: some warnings being treated as errors
vim +384 drivers/mtd/nand/raw/nand_macronix.c
366
367 static int __macronix_30lfxg18ac_rw_otp(struct mtd_info *mtd,
368 loff_t offs_in_flash,
369 size_t len, size_t *retlen,
370 u_char *buf, bool write)
371 {
372 struct nand_chip *nand;
373 size_t bytes_handled;
374 unsigned long page;
375 off_t offs_in_page;
376 void *dma_buf;
377 int ret;
378
379 /* 'nand_prog/read_page_op()' may use 'buf' as DMA buffer,
380 * so allocate properly aligned memory for it. This is
381 * needed because cross page accesses may lead to unaligned
382 * buffer address for DMA.
383 */
> 384 dma_buf = kmalloc(MACRONIX_30LFXG18AC_OTP_PAGE_SIZE, GFP_KERNEL);
385 if (!dma_buf)
386 return -ENOMEM;
387
388 nand = mtd_to_nand(mtd);
389 nand_select_target(nand, 0);
390
391 ret = macronix_30lfxg18ac_otp_enable(nand);
392 if (ret)
393 goto out_otp;
394
395 page = offs_in_flash;
396 /* 'page' will be result of division. */
397 offs_in_page = do_div(page, MACRONIX_30LFXG18AC_OTP_PAGE_SIZE);
398 bytes_handled = 0;
399
400 while (bytes_handled < len &&
401 page < MACRONIX_30LFXG18AC_OTP_PAGES) {
402 size_t bytes_to_handle;
403
404 bytes_to_handle = min_t(size_t, len - bytes_handled,
405 MACRONIX_30LFXG18AC_OTP_PAGE_SIZE -
406 offs_in_page);
407
408 if (write) {
409 memcpy(dma_buf, &buf[bytes_handled], bytes_to_handle);
410 ret = nand_prog_page_op(nand, page, offs_in_page,
411 dma_buf, bytes_to_handle);
412 } else {
413 ret = nand_read_page_op(nand, page, offs_in_page,
414 dma_buf, bytes_to_handle);
415 if (!ret)
416 memcpy(&buf[bytes_handled], dma_buf,
417 bytes_to_handle);
418 }
419 if (ret)
420 goto out_otp;
421
422 bytes_handled += bytes_to_handle;
423 offs_in_page = 0;
424 page++;
425 }
426
427 *retlen = bytes_handled;
428
429 out_otp:
430 if (ret)
431 dev_err(&mtd->dev, "failed to perform OTP IO: %i\n", ret);
432
433 ret = macronix_30lfxg18ac_otp_disable(nand);
434 WARN(ret, "failed to leave OTP mode after %s\n",
435 write ? "write" : "read");
436 nand_deselect_target(nand);
> 437 kfree(dma_buf);
438
439 return ret;
440 }
441
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
next prev parent reply other threads:[~2023-04-26 9:23 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-26 7:24 [PATCH v1] mtd: rawnand: macronix: OTP access for MX30LFxG18AC Arseniy Krasnov
2023-04-26 7:24 ` Arseniy Krasnov
2023-04-26 7:24 ` Arseniy Krasnov
2023-04-26 9:21 ` kernel test robot [this message]
2023-04-26 9:21 ` kernel test robot
2023-04-26 9:21 ` kernel test robot
2023-04-26 13:06 ` kernel test robot
2023-04-26 13:06 ` kernel test robot
2023-04-26 13:06 ` kernel test robot
2023-04-26 13:37 ` kernel test robot
2023-04-26 13:37 ` kernel test robot
2023-04-26 13:37 ` kernel test robot
-- strict thread matches above, loose matches on Subject: below --
2023-11-30 11:24 Arseniy Krasnov
2023-12-04 19:23 ` Arseniy Krasnov
2023-12-18 11:54 ` Arseniy Krasnov
2024-01-08 18:33 ` Arseniy Krasnov
2024-02-10 23:16 ` Arseniy Krasnov
2024-03-13 6:33 ` Arseniy Krasnov
2024-03-13 6:46 ` Michael Nazzareno Trimarchi
2024-04-17 18:33 ` Arseniy Krasnov
2024-04-17 18:44 ` Michael Nazzareno Trimarchi
2024-04-18 6:55 ` Dario Binacchi
2024-05-24 9:14 ` Arseniy Krasnov
2024-05-24 13:31 ` Dario Binacchi
2024-05-24 14:05 ` Arseniy Krasnov
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=202304261704.eyrD5KVk-lkp@intel.com \
--to=lkp@intel.com \
--cc=AVKrasnov@sberdevices.ru \
--cc=christian.koenig@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=kernel@sberdevices.ru \
--cc=linaro-mm-sig@lists.linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=miquel.raynal@bootlin.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=oxffffaa@gmail.com \
--cc=richard@nod.at \
--cc=sumit.semwal@linaro.org \
--cc=vigneshr@ti.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.