All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Amit Singh Tomar <amittomer25@gmail.com>,
	andre.przywara@arm.com, afaerber@suse.de,
	manivannan.sadhasivam@linaro.org, sboyd@kernel.org
Cc: linux-actions@lists.infradead.org, kbuild-all@lists.01.org,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	cristian.ciocaltea@gmail.com
Subject: Re: [PATCH v4 03/10] clk: actions: Add MMC clock-register reset bits
Date: Tue, 9 Jun 2020 19:29:09 +0800	[thread overview]
Message-ID: <202006091920.8midKhGY%lkp@intel.com> (raw)
In-Reply-To: <1591697830-16311-4-git-send-email-amittomer25@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 4808 bytes --]

Hi Amit,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on robh/for-next]
[also build test ERROR on clk/clk-next pza/reset/next linus/master v5.7 next-20200608]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Amit-Singh-Tomar/Add-MMC-and-DMA-support-for-Actions-S700/20200609-182123
base:   https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: nios2-allyesconfig (attached as .config)
compiler: nios2-linux-gcc (GCC) 9.3.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
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=nios2 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

Note: the linux-review/Amit-Singh-Tomar/Add-MMC-and-DMA-support-for-Actions-S700/20200609-182123 HEAD 1aa888462e44552a129b6ea35f603cf6ef65a83c builds fine.
      It only hurts bisectibility.

All error/warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/clk/actions/owl-s700.c:580:3: error: 'RESET_SD0' undeclared here (not in a function); did you mean 'RESET_SI'?
580 |  [RESET_SD0]     = { CMU_DEVRST0, BIT(22) },
|   ^~~~~~~~~
|   RESET_SI
>> drivers/clk/actions/owl-s700.c:580:3: error: array index in initializer not of integer type
drivers/clk/actions/owl-s700.c:580:3: note: (near initialization for 's700_resets')
>> drivers/clk/actions/owl-s700.c:581:3: error: 'RESET_SD1' undeclared here (not in a function); did you mean 'RESET_SI'?
581 |  [RESET_SD1]     = { CMU_DEVRST0, BIT(23) },
|   ^~~~~~~~~
|   RESET_SI
drivers/clk/actions/owl-s700.c:581:3: error: array index in initializer not of integer type
drivers/clk/actions/owl-s700.c:581:3: note: (near initialization for 's700_resets')
>> drivers/clk/actions/owl-s700.c:582:3: error: 'RESET_SD2' undeclared here (not in a function); did you mean 'RESET_SI'?
582 |  [RESET_SD2]     = { CMU_DEVRST0, BIT(24) },
|   ^~~~~~~~~
|   RESET_SI
drivers/clk/actions/owl-s700.c:582:3: error: array index in initializer not of integer type
drivers/clk/actions/owl-s700.c:582:3: note: (near initialization for 's700_resets')
>> drivers/clk/actions/owl-s700.c:587:17: warning: initialized field overwritten [-Woverride-init]
587 |  [RESET_SPI0] = { CMU_DEVRST1, BIT(4) },
|                 ^
drivers/clk/actions/owl-s700.c:587:17: note: (near initialization for 's700_resets[12]')
drivers/clk/actions/owl-s700.c:588:17: warning: initialized field overwritten [-Woverride-init]
588 |  [RESET_SPI1] = { CMU_DEVRST1, BIT(5) },
|                 ^
drivers/clk/actions/owl-s700.c:588:17: note: (near initialization for 's700_resets[13]')
drivers/clk/actions/owl-s700.c:589:17: warning: initialized field overwritten [-Woverride-init]
589 |  [RESET_SPI2] = { CMU_DEVRST1, BIT(6) },
|                 ^
drivers/clk/actions/owl-s700.c:589:17: note: (near initialization for 's700_resets[14]')

vim +580 drivers/clk/actions/owl-s700.c

   573	
   574	static const struct owl_reset_map s700_resets[] = {
   575		[RESET_DE]	= { CMU_DEVRST0, BIT(0) },
   576		[RESET_LCD0]	= { CMU_DEVRST0, BIT(1) },
   577		[RESET_DSI]	= { CMU_DEVRST0, BIT(2) },
   578		[RESET_CSI]	= { CMU_DEVRST0, BIT(13) },
   579		[RESET_SI]	= { CMU_DEVRST0, BIT(14) },
 > 580		[RESET_SD0]     = { CMU_DEVRST0, BIT(22) },
 > 581		[RESET_SD1]     = { CMU_DEVRST0, BIT(23) },
 > 582		[RESET_SD2]     = { CMU_DEVRST0, BIT(24) },
   583		[RESET_I2C0]	= { CMU_DEVRST1, BIT(0) },
   584		[RESET_I2C1]	= { CMU_DEVRST1, BIT(1) },
   585		[RESET_I2C2]	= { CMU_DEVRST1, BIT(2) },
   586		[RESET_I2C3]	= { CMU_DEVRST1, BIT(3) },
 > 587		[RESET_SPI0]	= { CMU_DEVRST1, BIT(4) },
   588		[RESET_SPI1]	= { CMU_DEVRST1, BIT(5) },
   589		[RESET_SPI2]	= { CMU_DEVRST1, BIT(6) },
   590		[RESET_SPI3]	= { CMU_DEVRST1, BIT(7) },
   591		[RESET_UART0]	= { CMU_DEVRST1, BIT(8) },
   592		[RESET_UART1]	= { CMU_DEVRST1, BIT(9) },
   593		[RESET_UART2]	= { CMU_DEVRST1, BIT(10) },
   594		[RESET_UART3]	= { CMU_DEVRST1, BIT(11) },
   595		[RESET_UART4]	= { CMU_DEVRST1, BIT(12) },
   596		[RESET_UART5]	= { CMU_DEVRST1, BIT(13) },
   597		[RESET_UART6]	= { CMU_DEVRST1, BIT(14) },
   598		[RESET_KEY]	= { CMU_DEVRST1, BIT(24) },
   599		[RESET_GPIO]	= { CMU_DEVRST1, BIT(25) },
   600		[RESET_AUDIO]	= { CMU_DEVRST1, BIT(29) },
   601	};
   602	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 55392 bytes --]

[-- Attachment #3: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v4 03/10] clk: actions: Add MMC clock-register reset bits
Date: Tue, 09 Jun 2020 19:29:09 +0800	[thread overview]
Message-ID: <202006091920.8midKhGY%lkp@intel.com> (raw)
In-Reply-To: <1591697830-16311-4-git-send-email-amittomer25@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 4905 bytes --]

Hi Amit,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on robh/for-next]
[also build test ERROR on clk/clk-next pza/reset/next linus/master v5.7 next-20200608]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Amit-Singh-Tomar/Add-MMC-and-DMA-support-for-Actions-S700/20200609-182123
base:   https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: nios2-allyesconfig (attached as .config)
compiler: nios2-linux-gcc (GCC) 9.3.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
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=nios2 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

Note: the linux-review/Amit-Singh-Tomar/Add-MMC-and-DMA-support-for-Actions-S700/20200609-182123 HEAD 1aa888462e44552a129b6ea35f603cf6ef65a83c builds fine.
      It only hurts bisectibility.

All error/warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/clk/actions/owl-s700.c:580:3: error: 'RESET_SD0' undeclared here (not in a function); did you mean 'RESET_SI'?
580 |  [RESET_SD0]     = { CMU_DEVRST0, BIT(22) },
|   ^~~~~~~~~
|   RESET_SI
>> drivers/clk/actions/owl-s700.c:580:3: error: array index in initializer not of integer type
drivers/clk/actions/owl-s700.c:580:3: note: (near initialization for 's700_resets')
>> drivers/clk/actions/owl-s700.c:581:3: error: 'RESET_SD1' undeclared here (not in a function); did you mean 'RESET_SI'?
581 |  [RESET_SD1]     = { CMU_DEVRST0, BIT(23) },
|   ^~~~~~~~~
|   RESET_SI
drivers/clk/actions/owl-s700.c:581:3: error: array index in initializer not of integer type
drivers/clk/actions/owl-s700.c:581:3: note: (near initialization for 's700_resets')
>> drivers/clk/actions/owl-s700.c:582:3: error: 'RESET_SD2' undeclared here (not in a function); did you mean 'RESET_SI'?
582 |  [RESET_SD2]     = { CMU_DEVRST0, BIT(24) },
|   ^~~~~~~~~
|   RESET_SI
drivers/clk/actions/owl-s700.c:582:3: error: array index in initializer not of integer type
drivers/clk/actions/owl-s700.c:582:3: note: (near initialization for 's700_resets')
>> drivers/clk/actions/owl-s700.c:587:17: warning: initialized field overwritten [-Woverride-init]
587 |  [RESET_SPI0] = { CMU_DEVRST1, BIT(4) },
|                 ^
drivers/clk/actions/owl-s700.c:587:17: note: (near initialization for 's700_resets[12]')
drivers/clk/actions/owl-s700.c:588:17: warning: initialized field overwritten [-Woverride-init]
588 |  [RESET_SPI1] = { CMU_DEVRST1, BIT(5) },
|                 ^
drivers/clk/actions/owl-s700.c:588:17: note: (near initialization for 's700_resets[13]')
drivers/clk/actions/owl-s700.c:589:17: warning: initialized field overwritten [-Woverride-init]
589 |  [RESET_SPI2] = { CMU_DEVRST1, BIT(6) },
|                 ^
drivers/clk/actions/owl-s700.c:589:17: note: (near initialization for 's700_resets[14]')

vim +580 drivers/clk/actions/owl-s700.c

   573	
   574	static const struct owl_reset_map s700_resets[] = {
   575		[RESET_DE]	= { CMU_DEVRST0, BIT(0) },
   576		[RESET_LCD0]	= { CMU_DEVRST0, BIT(1) },
   577		[RESET_DSI]	= { CMU_DEVRST0, BIT(2) },
   578		[RESET_CSI]	= { CMU_DEVRST0, BIT(13) },
   579		[RESET_SI]	= { CMU_DEVRST0, BIT(14) },
 > 580		[RESET_SD0]     = { CMU_DEVRST0, BIT(22) },
 > 581		[RESET_SD1]     = { CMU_DEVRST0, BIT(23) },
 > 582		[RESET_SD2]     = { CMU_DEVRST0, BIT(24) },
   583		[RESET_I2C0]	= { CMU_DEVRST1, BIT(0) },
   584		[RESET_I2C1]	= { CMU_DEVRST1, BIT(1) },
   585		[RESET_I2C2]	= { CMU_DEVRST1, BIT(2) },
   586		[RESET_I2C3]	= { CMU_DEVRST1, BIT(3) },
 > 587		[RESET_SPI0]	= { CMU_DEVRST1, BIT(4) },
   588		[RESET_SPI1]	= { CMU_DEVRST1, BIT(5) },
   589		[RESET_SPI2]	= { CMU_DEVRST1, BIT(6) },
   590		[RESET_SPI3]	= { CMU_DEVRST1, BIT(7) },
   591		[RESET_UART0]	= { CMU_DEVRST1, BIT(8) },
   592		[RESET_UART1]	= { CMU_DEVRST1, BIT(9) },
   593		[RESET_UART2]	= { CMU_DEVRST1, BIT(10) },
   594		[RESET_UART3]	= { CMU_DEVRST1, BIT(11) },
   595		[RESET_UART4]	= { CMU_DEVRST1, BIT(12) },
   596		[RESET_UART5]	= { CMU_DEVRST1, BIT(13) },
   597		[RESET_UART6]	= { CMU_DEVRST1, BIT(14) },
   598		[RESET_KEY]	= { CMU_DEVRST1, BIT(24) },
   599		[RESET_GPIO]	= { CMU_DEVRST1, BIT(25) },
   600		[RESET_AUDIO]	= { CMU_DEVRST1, BIT(29) },
   601	};
   602	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 55392 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Amit Singh Tomar <amittomer25@gmail.com>,
	andre.przywara@arm.com, afaerber@suse.de,
	manivannan.sadhasivam@linaro.org, sboyd@kernel.org
Cc: kbuild-all@lists.01.org, cristian.ciocaltea@gmail.com,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-actions@lists.infradead.org
Subject: Re: [PATCH v4 03/10] clk: actions: Add MMC clock-register reset bits
Date: Tue, 9 Jun 2020 19:29:09 +0800	[thread overview]
Message-ID: <202006091920.8midKhGY%lkp@intel.com> (raw)
In-Reply-To: <1591697830-16311-4-git-send-email-amittomer25@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 4808 bytes --]

Hi Amit,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on robh/for-next]
[also build test ERROR on clk/clk-next pza/reset/next linus/master v5.7 next-20200608]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Amit-Singh-Tomar/Add-MMC-and-DMA-support-for-Actions-S700/20200609-182123
base:   https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: nios2-allyesconfig (attached as .config)
compiler: nios2-linux-gcc (GCC) 9.3.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
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=nios2 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

Note: the linux-review/Amit-Singh-Tomar/Add-MMC-and-DMA-support-for-Actions-S700/20200609-182123 HEAD 1aa888462e44552a129b6ea35f603cf6ef65a83c builds fine.
      It only hurts bisectibility.

All error/warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/clk/actions/owl-s700.c:580:3: error: 'RESET_SD0' undeclared here (not in a function); did you mean 'RESET_SI'?
580 |  [RESET_SD0]     = { CMU_DEVRST0, BIT(22) },
|   ^~~~~~~~~
|   RESET_SI
>> drivers/clk/actions/owl-s700.c:580:3: error: array index in initializer not of integer type
drivers/clk/actions/owl-s700.c:580:3: note: (near initialization for 's700_resets')
>> drivers/clk/actions/owl-s700.c:581:3: error: 'RESET_SD1' undeclared here (not in a function); did you mean 'RESET_SI'?
581 |  [RESET_SD1]     = { CMU_DEVRST0, BIT(23) },
|   ^~~~~~~~~
|   RESET_SI
drivers/clk/actions/owl-s700.c:581:3: error: array index in initializer not of integer type
drivers/clk/actions/owl-s700.c:581:3: note: (near initialization for 's700_resets')
>> drivers/clk/actions/owl-s700.c:582:3: error: 'RESET_SD2' undeclared here (not in a function); did you mean 'RESET_SI'?
582 |  [RESET_SD2]     = { CMU_DEVRST0, BIT(24) },
|   ^~~~~~~~~
|   RESET_SI
drivers/clk/actions/owl-s700.c:582:3: error: array index in initializer not of integer type
drivers/clk/actions/owl-s700.c:582:3: note: (near initialization for 's700_resets')
>> drivers/clk/actions/owl-s700.c:587:17: warning: initialized field overwritten [-Woverride-init]
587 |  [RESET_SPI0] = { CMU_DEVRST1, BIT(4) },
|                 ^
drivers/clk/actions/owl-s700.c:587:17: note: (near initialization for 's700_resets[12]')
drivers/clk/actions/owl-s700.c:588:17: warning: initialized field overwritten [-Woverride-init]
588 |  [RESET_SPI1] = { CMU_DEVRST1, BIT(5) },
|                 ^
drivers/clk/actions/owl-s700.c:588:17: note: (near initialization for 's700_resets[13]')
drivers/clk/actions/owl-s700.c:589:17: warning: initialized field overwritten [-Woverride-init]
589 |  [RESET_SPI2] = { CMU_DEVRST1, BIT(6) },
|                 ^
drivers/clk/actions/owl-s700.c:589:17: note: (near initialization for 's700_resets[14]')

vim +580 drivers/clk/actions/owl-s700.c

   573	
   574	static const struct owl_reset_map s700_resets[] = {
   575		[RESET_DE]	= { CMU_DEVRST0, BIT(0) },
   576		[RESET_LCD0]	= { CMU_DEVRST0, BIT(1) },
   577		[RESET_DSI]	= { CMU_DEVRST0, BIT(2) },
   578		[RESET_CSI]	= { CMU_DEVRST0, BIT(13) },
   579		[RESET_SI]	= { CMU_DEVRST0, BIT(14) },
 > 580		[RESET_SD0]     = { CMU_DEVRST0, BIT(22) },
 > 581		[RESET_SD1]     = { CMU_DEVRST0, BIT(23) },
 > 582		[RESET_SD2]     = { CMU_DEVRST0, BIT(24) },
   583		[RESET_I2C0]	= { CMU_DEVRST1, BIT(0) },
   584		[RESET_I2C1]	= { CMU_DEVRST1, BIT(1) },
   585		[RESET_I2C2]	= { CMU_DEVRST1, BIT(2) },
   586		[RESET_I2C3]	= { CMU_DEVRST1, BIT(3) },
 > 587		[RESET_SPI0]	= { CMU_DEVRST1, BIT(4) },
   588		[RESET_SPI1]	= { CMU_DEVRST1, BIT(5) },
   589		[RESET_SPI2]	= { CMU_DEVRST1, BIT(6) },
   590		[RESET_SPI3]	= { CMU_DEVRST1, BIT(7) },
   591		[RESET_UART0]	= { CMU_DEVRST1, BIT(8) },
   592		[RESET_UART1]	= { CMU_DEVRST1, BIT(9) },
   593		[RESET_UART2]	= { CMU_DEVRST1, BIT(10) },
   594		[RESET_UART3]	= { CMU_DEVRST1, BIT(11) },
   595		[RESET_UART4]	= { CMU_DEVRST1, BIT(12) },
   596		[RESET_UART5]	= { CMU_DEVRST1, BIT(13) },
   597		[RESET_UART6]	= { CMU_DEVRST1, BIT(14) },
   598		[RESET_KEY]	= { CMU_DEVRST1, BIT(24) },
   599		[RESET_GPIO]	= { CMU_DEVRST1, BIT(25) },
   600		[RESET_AUDIO]	= { CMU_DEVRST1, BIT(29) },
   601	};
   602	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 55392 bytes --]

  reply	other threads:[~2020-06-09 11:30 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-09 10:17 [PATCH v4 00/10] Add MMC and DMA support for Actions S700 Amit Singh Tomar
2020-06-09 10:17 ` Amit Singh Tomar
2020-06-09 10:17 ` [PATCH v4 01/10] dmaengine: Actions: get rid of bit fields from dma descriptor Amit Singh Tomar
2020-06-09 10:17   ` Amit Singh Tomar
2020-06-09 10:17 ` [PATCH v4 02/10] dmaengine: Actions: Add support for S700 DMA engine Amit Singh Tomar
2020-06-09 10:17   ` Amit Singh Tomar
2020-06-24  6:15   ` Vinod Koul
2020-06-24  6:15     ` Vinod Koul
2020-06-24  9:35     ` André Przywara
2020-06-24  9:35       ` André Przywara
2020-06-29  8:28       ` Amit Tomer
2020-06-29  8:28         ` Amit Tomer
2020-06-29  9:54       ` Vinod Koul
2020-06-29  9:54         ` Vinod Koul
2020-06-29 11:19         ` André Przywara
2020-06-29 11:19           ` André Przywara
2020-06-29 13:21           ` Vinod Koul
2020-06-29 13:21             ` Vinod Koul
2020-06-29  8:19     ` Amit Tomer
2020-06-29  8:19       ` Amit Tomer
2020-06-29  9:52       ` Vinod Koul
2020-06-29  9:52         ` Vinod Koul
2020-06-30  9:47         ` Amit Tomer
2020-06-30  9:47           ` Amit Tomer
2020-06-30 14:24           ` Vinod Koul
2020-06-30 14:24             ` Vinod Koul
2020-06-30 18:14             ` Amit Tomer
2020-06-30 18:14               ` Amit Tomer
2020-06-09 10:17 ` [PATCH v4 03/10] clk: actions: Add MMC clock-register reset bits Amit Singh Tomar
2020-06-09 10:17   ` Amit Singh Tomar
2020-06-09 11:29   ` kernel test robot [this message]
2020-06-09 11:29     ` kernel test robot
2020-06-09 11:29     ` kernel test robot
2020-06-09 10:17 ` [PATCH v4 04/10] arm64: dts: actions: limit address range for pinctrl node Amit Singh Tomar
2020-06-09 10:17   ` Amit Singh Tomar
2020-06-09 10:17 ` [PATCH v4 05/10] dt-bindings: dmaengine: convert Actions Semi Owl SoCs bindings to yaml Amit Singh Tomar
2020-06-09 10:17   ` Amit Singh Tomar
2020-06-17 21:16   ` Rob Herring
2020-06-17 21:16     ` Rob Herring
2020-06-09 10:17 ` [PATCH v4 06/10] arm64: dts: actions: Add DMA Controller for S700 Amit Singh Tomar
2020-06-09 10:17   ` Amit Singh Tomar
2020-06-09 10:17 ` [PATCH v4 07/10] dt-bindings: reset: s700: Add binding constants for mmc Amit Singh Tomar
2020-06-09 10:17   ` Amit Singh Tomar
2020-06-09 10:17 ` [PATCH v4 08/10] dt-bindings: mmc: owl: add compatible string actions, s700-mmc Amit Singh Tomar
2020-06-09 10:17   ` [PATCH v4 08/10] dt-bindings: mmc: owl: add compatible string actions,s700-mmc Amit Singh Tomar
2020-06-09 10:17 ` [PATCH v4 09/10] arm64: dts: actions: Add MMC controller support for S700 Amit Singh Tomar
2020-06-09 10:17   ` Amit Singh Tomar
2020-06-09 10:17 ` [PATCH v4 10/10] arm64: dts: actions: Add uSD support for Cubieboard7 Amit Singh Tomar
2020-06-09 10:17   ` Amit Singh Tomar

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=202006091920.8midKhGY%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=afaerber@suse.de \
    --cc=amittomer25@gmail.com \
    --cc=andre.przywara@arm.com \
    --cc=cristian.ciocaltea@gmail.com \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-actions@lists.infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=manivannan.sadhasivam@linaro.org \
    --cc=sboyd@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 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.