All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Peter Griffin <peter.griffin@linaro.org>,
	arnd@arndb.de, robh+dt@kernel.org,
	krzysztof.kozlowski+dt@linaro.org, linux@roeck-us.net,
	wim@linux-watchdog.org, conor+dt@kernel.org,
	alim.akhtar@samsung.com, jaewon02.kim@samsung.com,
	chanho61.park@samsung.com, semen.protsenko@linaro.org
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
	kernel-team@android.com, peter.griffin@linaro.org,
	tudor.ambarus@linaro.org, andre.draszik@linaro.org,
	saravanak@google.com, willmcvicker@google.com,
	linux-fsd@tesla.com, linux-watchdog@vger.kernel.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org
Subject: Re: [PATCH 2/9] soc: samsung: exynos-pmu: Add exynos_pmu_update/read/write APIs and SoC quirks
Date: Sat, 27 Jan 2024 07:07:23 +0800	[thread overview]
Message-ID: <202401270633.VorEna6q-lkp@intel.com> (raw)
In-Reply-To: <20240122225710.1952066-3-peter.griffin@linaro.org>

Hi Peter,

kernel test robot noticed the following build errors:

[auto build test ERROR on krzk/for-next]
[also build test ERROR on robh/for-next soc/for-next linus/master v6.8-rc1 next-20240125]
[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/Peter-Griffin/dt-bindings-watchdog-samsung-wdt-deprecate-samsung-syscon-phandle/20240123-070052
base:   https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git for-next
patch link:    https://lore.kernel.org/r/20240122225710.1952066-3-peter.griffin%40linaro.org
patch subject: [PATCH 2/9] soc: samsung: exynos-pmu: Add exynos_pmu_update/read/write APIs and SoC quirks
config: x86_64-buildonly-randconfig-006-20240126 (https://download.01.org/0day-ci/archive/20240127/202401270633.VorEna6q-lkp@intel.com/config)
compiler: clang version 17.0.6 (https://github.com/llvm/llvm-project 6009708b4367171ccdbf4b5905cb6a803753fe18)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240127/202401270633.VorEna6q-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/202401270633.VorEna6q-lkp@intel.com/

All errors (new ones prefixed by >>):

   In file included from drivers/pinctrl/samsung/pinctrl-exynos.c:27:
>> include/linux/soc/samsung/exynos-pmu.h:38:1: error: expected identifier or '('
      38 | {
         | ^
   include/linux/soc/samsung/exynos-pmu.h:44:1: error: expected identifier or '('
      44 | {
         | ^
>> include/linux/soc/samsung/exynos-pmu.h:50:9: error: incompatible pointer to integer conversion returning 'void *' from a function with result type 'int' [-Wint-conversion]
      50 |         return ERR_PTR(-ENODEV);
         |                ^~~~~~~~~~~~~~~~
   include/linux/soc/samsung/exynos-pmu.h:55:9: error: incompatible pointer to integer conversion returning 'void *' from a function with result type 'int' [-Wint-conversion]
      55 |         return ERR_PTR(-ENODEV);
         |                ^~~~~~~~~~~~~~~~
   4 errors generated.


vim +38 include/linux/soc/samsung/exynos-pmu.h

    35	
    36	static inline int exynos_pmu_update_bits(unsigned int offset, unsigned int mask,
    37						 unsigned int val);
  > 38	{
    39		return ERR_PTR(-ENODEV);
    40	}
    41	
    42	static inline int exynos_pmu_update(unsigned int offset, unsigned int mask,
    43					    unsigned int val);
    44	{
    45		return ERR_PTR(-ENODEV);
    46	}
    47	
    48	static inline int exynos_pmu_write(unsigned int offset, unsigned int val)
    49	{
  > 50		return ERR_PTR(-ENODEV);
    51	}
    52	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

_______________________________________________
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: Peter Griffin <peter.griffin@linaro.org>,
	arnd@arndb.de, robh+dt@kernel.org,
	krzysztof.kozlowski+dt@linaro.org, linux@roeck-us.net,
	wim@linux-watchdog.org, conor+dt@kernel.org,
	alim.akhtar@samsung.com, jaewon02.kim@samsung.com,
	chanho61.park@samsung.com, semen.protsenko@linaro.org
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
	kernel-team@android.com, peter.griffin@linaro.org,
	tudor.ambarus@linaro.org, andre.draszik@linaro.org,
	saravanak@google.com, willmcvicker@google.com,
	linux-fsd@tesla.com, linux-watchdog@vger.kernel.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org
Subject: Re: [PATCH 2/9] soc: samsung: exynos-pmu: Add exynos_pmu_update/read/write APIs and SoC quirks
Date: Sat, 27 Jan 2024 07:07:23 +0800	[thread overview]
Message-ID: <202401270633.VorEna6q-lkp@intel.com> (raw)
In-Reply-To: <20240122225710.1952066-3-peter.griffin@linaro.org>

Hi Peter,

kernel test robot noticed the following build errors:

[auto build test ERROR on krzk/for-next]
[also build test ERROR on robh/for-next soc/for-next linus/master v6.8-rc1 next-20240125]
[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/Peter-Griffin/dt-bindings-watchdog-samsung-wdt-deprecate-samsung-syscon-phandle/20240123-070052
base:   https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git for-next
patch link:    https://lore.kernel.org/r/20240122225710.1952066-3-peter.griffin%40linaro.org
patch subject: [PATCH 2/9] soc: samsung: exynos-pmu: Add exynos_pmu_update/read/write APIs and SoC quirks
config: x86_64-buildonly-randconfig-006-20240126 (https://download.01.org/0day-ci/archive/20240127/202401270633.VorEna6q-lkp@intel.com/config)
compiler: clang version 17.0.6 (https://github.com/llvm/llvm-project 6009708b4367171ccdbf4b5905cb6a803753fe18)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240127/202401270633.VorEna6q-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/202401270633.VorEna6q-lkp@intel.com/

All errors (new ones prefixed by >>):

   In file included from drivers/pinctrl/samsung/pinctrl-exynos.c:27:
>> include/linux/soc/samsung/exynos-pmu.h:38:1: error: expected identifier or '('
      38 | {
         | ^
   include/linux/soc/samsung/exynos-pmu.h:44:1: error: expected identifier or '('
      44 | {
         | ^
>> include/linux/soc/samsung/exynos-pmu.h:50:9: error: incompatible pointer to integer conversion returning 'void *' from a function with result type 'int' [-Wint-conversion]
      50 |         return ERR_PTR(-ENODEV);
         |                ^~~~~~~~~~~~~~~~
   include/linux/soc/samsung/exynos-pmu.h:55:9: error: incompatible pointer to integer conversion returning 'void *' from a function with result type 'int' [-Wint-conversion]
      55 |         return ERR_PTR(-ENODEV);
         |                ^~~~~~~~~~~~~~~~
   4 errors generated.


vim +38 include/linux/soc/samsung/exynos-pmu.h

    35	
    36	static inline int exynos_pmu_update_bits(unsigned int offset, unsigned int mask,
    37						 unsigned int val);
  > 38	{
    39		return ERR_PTR(-ENODEV);
    40	}
    41	
    42	static inline int exynos_pmu_update(unsigned int offset, unsigned int mask,
    43					    unsigned int val);
    44	{
    45		return ERR_PTR(-ENODEV);
    46	}
    47	
    48	static inline int exynos_pmu_write(unsigned int offset, unsigned int val)
    49	{
  > 50		return ERR_PTR(-ENODEV);
    51	}
    52	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  parent reply	other threads:[~2024-01-26 23:08 UTC|newest]

Thread overview: 76+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-22 22:57 [PATCH 0/9] Add exynos_pmu_update/read/write() APIs to exynos-pmu Peter Griffin
2024-01-22 22:57 ` Peter Griffin
2024-01-22 22:57 ` [PATCH 1/9] dt-bindings: watchdog: samsung-wdt: deprecate samsung,syscon-phandle Peter Griffin
2024-01-22 22:57   ` Peter Griffin
2024-01-23 11:09   ` Krzysztof Kozlowski
2024-01-23 11:09     ` Krzysztof Kozlowski
2024-01-22 22:57 ` [PATCH 2/9] soc: samsung: exynos-pmu: Add exynos_pmu_update/read/write APIs and SoC quirks Peter Griffin
2024-01-22 22:57   ` Peter Griffin
2024-01-23  8:10   ` Arnd Bergmann
2024-01-23  8:10     ` Arnd Bergmann
2024-01-24 10:21     ` Peter Griffin
2024-01-24 10:21       ` Peter Griffin
2024-01-23 11:17   ` Krzysztof Kozlowski
2024-01-23 11:17     ` Krzysztof Kozlowski
2024-01-24 10:41     ` Peter Griffin
2024-01-24 10:41       ` Peter Griffin
2024-01-23 18:56   ` Sam Protsenko
2024-01-23 18:56     ` Sam Protsenko
2024-01-24 10:02     ` Peter Griffin
2024-01-24 10:02       ` Peter Griffin
2024-01-24 20:23       ` Sam Protsenko
2024-01-24 20:23         ` Sam Protsenko
2024-01-25 10:48         ` Peter Griffin
2024-01-25 10:48           ` Peter Griffin
2024-01-26 17:26   ` kernel test robot
2024-01-26 17:26     ` kernel test robot
2024-01-26 23:07   ` kernel test robot [this message]
2024-01-26 23:07     ` kernel test robot
2024-01-22 22:57 ` [PATCH 3/9] watchdog: s3c2410_wdt: update to use new exynos_pmu_*() apis Peter Griffin
2024-01-22 22:57   ` Peter Griffin
2024-01-23 10:33   ` Guenter Roeck
2024-01-23 10:33     ` Guenter Roeck
2024-01-23 15:35     ` Peter Griffin
2024-01-23 15:35       ` Peter Griffin
2024-01-23 11:19   ` Krzysztof Kozlowski
2024-01-23 11:19     ` Krzysztof Kozlowski
2024-01-23 17:30     ` Peter Griffin
2024-01-23 17:30       ` Peter Griffin
2024-01-23 18:12       ` Krzysztof Kozlowski
2024-01-23 18:12         ` Krzysztof Kozlowski
2024-01-24  3:37         ` Saravana Kannan
2024-01-24  3:37           ` Saravana Kannan
2024-01-24  6:27           ` Krzysztof Kozlowski
2024-01-24  6:27             ` Krzysztof Kozlowski
2024-01-24 21:27             ` Saravana Kannan
2024-01-24 21:27               ` Saravana Kannan
2024-01-25  7:37               ` Krzysztof Kozlowski
2024-01-25  7:37                 ` Krzysztof Kozlowski
2024-01-25 11:46                 ` Lee Jones
2024-01-25 11:46                   ` Lee Jones
2024-01-26  2:23                   ` Saravana Kannan
2024-01-26  2:23                     ` Saravana Kannan
2024-01-26  8:43                     ` Lee Jones
2024-01-26  8:43                       ` Lee Jones
2024-01-26  2:17                 ` Saravana Kannan
2024-01-26  2:17                   ` Saravana Kannan
2024-01-25 13:19               ` Peter Griffin
2024-01-25 13:19                 ` Peter Griffin
2024-01-30 20:27               ` Rob Herring
2024-01-30 20:27                 ` Rob Herring
2024-01-26 17:04   ` kernel test robot
2024-01-26 17:04     ` kernel test robot
2024-01-22 22:57 ` [PATCH 4/9] arm64: dts: fsd: remove deprecated samsung,syscon-phandle Peter Griffin
2024-01-22 22:57   ` Peter Griffin
2024-01-22 22:57 ` [PATCH 5/9] arm64: dts: exynosautov9: " Peter Griffin
2024-01-22 22:57   ` Peter Griffin
2024-01-22 22:57 ` [PATCH 6/9] arm64: dts: exynos850: " Peter Griffin
2024-01-22 22:57   ` Peter Griffin
2024-01-22 22:57 ` [PATCH 7/9] arm64: dts: exynos7: " Peter Griffin
2024-01-22 22:57   ` Peter Griffin
2024-01-22 22:57 ` [PATCH 8/9] ARM: dts: samsung: exynos4: " Peter Griffin
2024-01-22 22:57   ` Peter Griffin
2024-01-22 22:57 ` [PATCH 9/9] ARM: dts: exynos5250: " Peter Griffin
2024-01-22 22:57   ` Peter Griffin
2024-01-23  7:41   ` Arnd Bergmann
2024-01-23  7:41     ` Arnd Bergmann

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=202401270633.VorEna6q-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=alim.akhtar@samsung.com \
    --cc=andre.draszik@linaro.org \
    --cc=arnd@arndb.de \
    --cc=chanho61.park@samsung.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=jaewon02.kim@samsung.com \
    --cc=kernel-team@android.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-fsd@tesla.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=llvm@lists.linux.dev \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=peter.griffin@linaro.org \
    --cc=robh+dt@kernel.org \
    --cc=saravanak@google.com \
    --cc=semen.protsenko@linaro.org \
    --cc=tudor.ambarus@linaro.org \
    --cc=willmcvicker@google.com \
    --cc=wim@linux-watchdog.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.