[tip:irq/core 2/2] kernel/irq/irq_sim.c:246 devm_irq_domain_create_sim() warn: passing zero to 'ERR_PTR'
by kernel test robot
CC: kbuild-all(a)lists.01.org
CC: linux-kernel(a)vger.kernel.org
CC: x86(a)kernel.org
TO: Bartosz Golaszewski <bgolaszewski(a)baylibre.com>
CC: Thomas Gleixner <tglx(a)linutronix.de>
tree: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
head: e6d46eded43dacf6370a7ae70f927ef4692cfcab
commit: e6d46eded43dacf6370a7ae70f927ef4692cfcab [2/2] genirq/irq_sim: Shrink devm_irq_domain_create_sim()
:::::: branch date: 10 hours ago
:::::: commit date: 10 hours ago
config: x86_64-randconfig-m001-20210328 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
Reported-by: Dan Carpenter <dan.carpenter(a)oracle.com>
smatch warnings:
kernel/irq/irq_sim.c:246 devm_irq_domain_create_sim() warn: passing zero to 'ERR_PTR'
vim +/ERR_PTR +246 kernel/irq/irq_sim.c
44e72c7ebf2940 Bartosz Golaszewski 2017-08-14 221
44e72c7ebf2940 Bartosz Golaszewski 2017-08-14 222 /**
337cbeb2c13eb4 Bartosz Golaszewski 2020-05-14 223 * devm_irq_domain_create_sim - Create a new interrupt simulator for
337cbeb2c13eb4 Bartosz Golaszewski 2020-05-14 224 * a managed device.
44e72c7ebf2940 Bartosz Golaszewski 2017-08-14 225 *
44e72c7ebf2940 Bartosz Golaszewski 2017-08-14 226 * @dev: Device to initialize the simulator object for.
337cbeb2c13eb4 Bartosz Golaszewski 2020-05-14 227 * @fnode: struct fwnode_handle to be associated with this domain.
44e72c7ebf2940 Bartosz Golaszewski 2017-08-14 228 * @num_irqs: Number of interrupts to allocate
44e72c7ebf2940 Bartosz Golaszewski 2017-08-14 229 *
337cbeb2c13eb4 Bartosz Golaszewski 2020-05-14 230 * On success: return a new irq_domain object.
337cbeb2c13eb4 Bartosz Golaszewski 2020-05-14 231 * On failure: a negative errno wrapped with ERR_PTR().
44e72c7ebf2940 Bartosz Golaszewski 2017-08-14 232 */
337cbeb2c13eb4 Bartosz Golaszewski 2020-05-14 233 struct irq_domain *devm_irq_domain_create_sim(struct device *dev,
337cbeb2c13eb4 Bartosz Golaszewski 2020-05-14 234 struct fwnode_handle *fwnode,
44e72c7ebf2940 Bartosz Golaszewski 2017-08-14 235 unsigned int num_irqs)
44e72c7ebf2940 Bartosz Golaszewski 2017-08-14 236 {
e6d46eded43dac Bartosz Golaszewski 2021-03-01 237 struct irq_domain *domain;
e6d46eded43dac Bartosz Golaszewski 2021-03-01 238 int ret;
44e72c7ebf2940 Bartosz Golaszewski 2017-08-14 239
e6d46eded43dac Bartosz Golaszewski 2021-03-01 240 domain = irq_domain_create_sim(fwnode, num_irqs);
e6d46eded43dac Bartosz Golaszewski 2021-03-01 241 if (IS_ERR(domain))
e6d46eded43dac Bartosz Golaszewski 2021-03-01 242 return domain;
44e72c7ebf2940 Bartosz Golaszewski 2017-08-14 243
e6d46eded43dac Bartosz Golaszewski 2021-03-01 244 ret = devm_add_action_or_reset(dev, devm_irq_domain_remove_sim, domain);
e6d46eded43dac Bartosz Golaszewski 2021-03-01 245 if (!ret)
e6d46eded43dac Bartosz Golaszewski 2021-03-01 @246 return ERR_PTR(ret);
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 4 months
drivers/gpio/gpio-regmap.c:132:21: warning: Boolean result is used in bitwise operation. Clarify expression with parentheses. [clarifyCondition]
by kernel test robot
CC: kbuild-all(a)lists.01.org
CC: linux-kernel(a)vger.kernel.org
TO: Michael Walle <michael(a)walle.cc>
CC: Lee Jones <lee.jones(a)linaro.org>
CC: Linus Walleij <linus.walleij(a)linaro.org>
CC: Andy Shevchenko <andriy.shevchenko(a)linux.intel.com>
Hi Michael,
First bad commit (maybe != root cause):
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: a5e13c6df0e41702d2b2c77c8ad41677ebb065b3
commit: b7536d8749e54923c9a7e8c4175e1e4f9b8c1541 gpio: Add support for the sl28cpld GPIO controller
date: 6 months ago
:::::: branch date: 18 hours ago
:::::: commit date: 6 months ago
compiler: microblaze-linux-gcc (GCC) 9.3.0
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
cppcheck possible warnings: (new ones prefixed by >>, may not real problems)
>> drivers/gpio/gpio-regmap.c:132:21: warning: Boolean result is used in bitwise operation. Clarify expression with parentheses. [clarifyCondition]
if (!!(val & mask) ^ invert)
^
vim +132 drivers/gpio/gpio-regmap.c
ebe363197e525f Michael Walle 2020-05-28 106
ebe363197e525f Michael Walle 2020-05-28 107 static int gpio_regmap_get_direction(struct gpio_chip *chip,
ebe363197e525f Michael Walle 2020-05-28 108 unsigned int offset)
ebe363197e525f Michael Walle 2020-05-28 109 {
ebe363197e525f Michael Walle 2020-05-28 110 struct gpio_regmap *gpio = gpiochip_get_data(chip);
ebe363197e525f Michael Walle 2020-05-28 111 unsigned int base, val, reg, mask;
ebe363197e525f Michael Walle 2020-05-28 112 int invert, ret;
ebe363197e525f Michael Walle 2020-05-28 113
ebe363197e525f Michael Walle 2020-05-28 114 if (gpio->reg_dir_out_base) {
ebe363197e525f Michael Walle 2020-05-28 115 base = gpio_regmap_addr(gpio->reg_dir_out_base);
ebe363197e525f Michael Walle 2020-05-28 116 invert = 0;
ebe363197e525f Michael Walle 2020-05-28 117 } else if (gpio->reg_dir_in_base) {
ebe363197e525f Michael Walle 2020-05-28 118 base = gpio_regmap_addr(gpio->reg_dir_in_base);
ebe363197e525f Michael Walle 2020-05-28 119 invert = 1;
ebe363197e525f Michael Walle 2020-05-28 120 } else {
ebe363197e525f Michael Walle 2020-05-28 121 return -EOPNOTSUPP;
ebe363197e525f Michael Walle 2020-05-28 122 }
ebe363197e525f Michael Walle 2020-05-28 123
ebe363197e525f Michael Walle 2020-05-28 124 ret = gpio->reg_mask_xlate(gpio, base, offset, ®, &mask);
ebe363197e525f Michael Walle 2020-05-28 125 if (ret)
ebe363197e525f Michael Walle 2020-05-28 126 return ret;
ebe363197e525f Michael Walle 2020-05-28 127
ebe363197e525f Michael Walle 2020-05-28 128 ret = regmap_read(gpio->regmap, reg, &val);
ebe363197e525f Michael Walle 2020-05-28 129 if (ret)
ebe363197e525f Michael Walle 2020-05-28 130 return ret;
ebe363197e525f Michael Walle 2020-05-28 131
ebe363197e525f Michael Walle 2020-05-28 @132 if (!!(val & mask) ^ invert)
ebe363197e525f Michael Walle 2020-05-28 133 return GPIO_LINE_DIRECTION_OUT;
ebe363197e525f Michael Walle 2020-05-28 134 else
ebe363197e525f Michael Walle 2020-05-28 135 return GPIO_LINE_DIRECTION_IN;
ebe363197e525f Michael Walle 2020-05-28 136 }
ebe363197e525f Michael Walle 2020-05-28 137
:::::: The code at line 132 was first introduced by commit
:::::: ebe363197e525ffbd279c729421f6f6c24d8d681 gpio: add a reusable generic gpio_chip using regmap
:::::: TO: Michael Walle <michael(a)walle.cc>
:::::: CC: Linus Walleij <linus.walleij(a)linaro.org>
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 4 months
Re: [PATCH v2 6/6] usb: typec: Link all ports during connector registration
by kernel test robot
CC: kbuild-all(a)lists.01.org
In-Reply-To: <20210329084426.78138-7-heikki.krogerus(a)linux.intel.com>
References: <20210329084426.78138-7-heikki.krogerus(a)linux.intel.com>
TO: Heikki Krogerus <heikki.krogerus(a)linux.intel.com>
TO: "Greg Kroah-Hartman" <gregkh(a)linuxfoundation.org>
CC: Alan Stern <stern(a)rowland.harvard.edu>
CC: Benson Leung <bleung(a)google.com>
CC: Prashant Malani <pmalani(a)chromium.org>
CC: Guenter Roeck <linux(a)roeck-us.net>
CC: linux-usb(a)vger.kernel.org
CC: linux-kernel(a)vger.kernel.org
Hi Heikki,
I love your patch! Perhaps something to improve:
[auto build test WARNING on next-20210326]
[also build test WARNING on v5.12-rc5]
[cannot apply to usb/usb-testing chrome-platform-linux/for-next linus/master v5.12-rc5 v5.12-rc4 v5.12-rc3]
[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]
url: https://github.com/0day-ci/linux/commits/Heikki-Krogerus/usb-Linking-port...
base: 931294922e65a23e1aad6398b9ae02df74044679
:::::: branch date: 3 hours ago
:::::: commit date: 3 hours ago
config: i386-randconfig-m021-20210329 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
Reported-by: Dan Carpenter <dan.carpenter(a)oracle.com>
New smatch warnings:
drivers/usb/typec/port-mapper.c:229 each_port() warn: passing a valid pointer to 'PTR_ERR'
Old smatch warnings:
drivers/usb/typec/port-mapper.c:164 typec_link_port() warn: passing a valid pointer to 'PTR_ERR'
drivers/usb/typec/port-mapper.c:168 typec_link_port() warn: missing error code 'ret'
vim +/PTR_ERR +229 drivers/usb/typec/port-mapper.c
10f66a35667732 Heikki Krogerus 2021-03-29 220
10f66a35667732 Heikki Krogerus 2021-03-29 221 #ifdef CONFIG_USB
10f66a35667732 Heikki Krogerus 2021-03-29 222 static int each_port(struct device *port, void *connector)
10f66a35667732 Heikki Krogerus 2021-03-29 223 {
10f66a35667732 Heikki Krogerus 2021-03-29 224 struct port_node *node;
10f66a35667732 Heikki Krogerus 2021-03-29 225 int ret;
10f66a35667732 Heikki Krogerus 2021-03-29 226
10f66a35667732 Heikki Krogerus 2021-03-29 227 node = create_port_node(port);
10f66a35667732 Heikki Krogerus 2021-03-29 228 if (IS_ERR(node))
10f66a35667732 Heikki Krogerus 2021-03-29 @229 return PTR_ERR(node);
10f66a35667732 Heikki Krogerus 2021-03-29 230
10f66a35667732 Heikki Krogerus 2021-03-29 231 if (!connector_match(connector, node)) {
10f66a35667732 Heikki Krogerus 2021-03-29 232 remove_port_node(node);
10f66a35667732 Heikki Krogerus 2021-03-29 233 return 0;
10f66a35667732 Heikki Krogerus 2021-03-29 234 }
10f66a35667732 Heikki Krogerus 2021-03-29 235
10f66a35667732 Heikki Krogerus 2021-03-29 236 ret = link_port(to_typec_port(connector), node);
10f66a35667732 Heikki Krogerus 2021-03-29 237 if (ret) {
10f66a35667732 Heikki Krogerus 2021-03-29 238 remove_port_node(node->pld);
10f66a35667732 Heikki Krogerus 2021-03-29 239 return ret;
10f66a35667732 Heikki Krogerus 2021-03-29 240 }
10f66a35667732 Heikki Krogerus 2021-03-29 241
10f66a35667732 Heikki Krogerus 2021-03-29 242 get_device(connector);
10f66a35667732 Heikki Krogerus 2021-03-29 243
10f66a35667732 Heikki Krogerus 2021-03-29 244 return 0;
10f66a35667732 Heikki Krogerus 2021-03-29 245 }
10f66a35667732 Heikki Krogerus 2021-03-29 246 #endif
10f66a35667732 Heikki Krogerus 2021-03-29 247
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 4 months
[shawnguo:imx/dt 19/19] dtbs_check: arch/arm/boot/dts/imx7d-remarkable2.dt.yaml: /: compatible: 'oneOf' conditional failed, one must be fixed:
by kernel test robot
CC: kbuild-all(a)lists.01.org
CC: linux-arm-kernel(a)lists.infradead.org
TO: Alistair Francis <alistair(a)alistair23.me>
CC: Shawn Guo <shawnguo(a)kernel.org>
tree: https://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git imx/dt
head: c11d56b3761c77f50368b4828cc5d9f5f343148d
commit: c11d56b3761c77f50368b4828cc5d9f5f343148d [19/19] ARM: imx7d-remarkable2: Initial device tree for reMarkable2
:::::: branch date: 10 hours ago
:::::: commit date: 10 hours ago
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce: make ARCH=arm dtbs_check
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
dtcheck warnings: (new ones prefixed by >>)
>> arch/arm/boot/dts/imx7d-remarkable2.dt.yaml: /: compatible: 'oneOf' conditional failed, one must be fixed:
['remarkable,imx7d-remarkable2', 'fsl,imx7d'] is too short
['remarkable,imx7d-remarkable2', 'fsl,imx7d'] is too long
Additional items are not allowed ('fsl,imx7d' was unexpected)
'remarkable,imx7d-remarkable2' is not one of ['armadeus,imx1-apf9328', 'fsl,imx1ads']
'remarkable,imx7d-remarkable2' is not one of ['fsl,imx23-evk', 'olimex,imx23-olinuxino']
'remarkable,imx7d-remarkable2' is not one of ['fsl,imx25-pdk', 'karo,imx25-tx25']
'remarkable,imx7d-remarkable2' is not one of ['eukrea,mbimxsd25-baseboard']
'remarkable,imx7d-remarkable2' is not one of ['eukrea,mbimxsd25-baseboard-cmo-qvga', 'eukrea,mbimxsd25-baseboard-dvi-svga', 'eukrea,mbimxsd25-baseboard-dvi-vga']
'remarkable,imx7d-remarkable2' is not one of ['armadeus,imx27-apf27', 'fsl,imx27-pdk']
'armadeus,imx27-apf27dev' was expected
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 4 months
drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c:1370:4: warning: Variable 'num_of_active_display' is modified but its new value is never used. [unreadVariable]
by Dan Carpenter
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: a5e13c6df0e41702d2b2c77c8ad41677ebb065b3
commit: 75145aab7a0d865b361de687b201e8c4b76425eb drm/amdgpu/swsmu: clean up a bunch of stale interfaces
compiler: alpha-linux-gcc (GCC) 9.3.0
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
cppcheck possible warnings: (new ones prefixed by >>, may not real problems)
In file included from drivers/gpu/drm/amd/amdgpu/../pm/swsmu/amdgpu_smu.c:
>> drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c:1370:4: warning: Variable 'num_of_active_display' is modified but its new value is never used. [unreadVariable]
num_of_active_display++;
^
vim +/num_of_active_display +1370 drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1351 int smu_display_configuration_change(struct smu_context *smu,
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1352 const struct amd_pp_display_configuration *display_config)
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1353 {
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1354 int index = 0;
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1355 int num_of_active_display = 0;
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1356
2b7ad277e96577 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Evan Quan 2020-05-25 1357 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2b7ad277e96577 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Evan Quan 2020-05-25 1358 return -EOPNOTSUPP;
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1359
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1360 if (!display_config)
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1361 return -EINVAL;
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1362
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1363 mutex_lock(&smu->mutex);
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1364
ce63d8f8b55d28 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Evan Quan 2020-06-08 1365 smu_set_min_dcef_deep_sleep(smu,
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1366 display_config->min_dcef_deep_sleep_set_clk / 100);
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1367
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1368 for (index = 0; index < display_config->num_path_including_non_display; index++) {
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1369 if (display_config->displays[index].controller_id != 0)
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 @1370 num_of_active_display++;
^^^^^^^^^^^^^^^^^^^^^^^
unused
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1371 }
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1372
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1373 mutex_unlock(&smu->mutex);
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1374
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1375 return 0;
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1376 }
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
_______________________________________________
kbuild mailing list -- kbuild(a)lists.01.org
To unsubscribe send an email to kbuild-leave(a)lists.01.org
1 year, 4 months
[jirislaby:devel 85/106] drivers/block/xen-blkfront.c:280:9: sparse: sparse: too long token expansion
by kernel test robot
CC: kbuild-all(a)lists.01.org
TO: Jiri Slaby <jslaby(a)suse.cz>
tree: https://git.kernel.org/pub/scm/linux/kernel/git/jirislaby/linux.git devel
head: 2f9ca8269e51d1ab414bb0798c6c8ab3d705994d
commit: b830da515480dc8f56fce2d6825103bee0d3124e [85/106] include condition in the BUG_ON/WARN_ON output
:::::: branch date: 5 hours ago
:::::: commit date: 5 hours ago
config: x86_64-randconfig-s021-20210329 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce:
# apt-get install sparse
# sparse version: v0.6.3-277-gc089cd2d-dirty
# https://git.kernel.org/pub/scm/linux/kernel/git/jirislaby/linux.git/commi...
git remote add jirislaby https://git.kernel.org/pub/scm/linux/kernel/git/jirislaby/linux.git
git fetch --no-tags jirislaby devel
git checkout b830da515480dc8f56fce2d6825103bee0d3124e
# save the attached .config to linux build tree
make W=1 C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
sparse warnings: (new ones prefixed by >>)
>> drivers/block/xen-blkfront.c:280:9: sparse: sparse: too long token expansion
vim +280 drivers/block/xen-blkfront.c
4ab50af63d2eb5 Juergen Gross 2020-03-05 275
81f35161577236 Bob Liu 2015-11-14 276 static int get_id_from_freelist(struct blkfront_ring_info *rinfo)
9f27ee59503865 Jeremy Fitzhardinge 2007-07-17 277 {
81f35161577236 Bob Liu 2015-11-14 278 unsigned long free = rinfo->shadow_free;
81f35161577236 Bob Liu 2015-11-14 279
81f35161577236 Bob Liu 2015-11-14 @280 BUG_ON(free >= BLK_RING_SIZE(rinfo->dev_info));
81f35161577236 Bob Liu 2015-11-14 281 rinfo->shadow_free = rinfo->shadow[free].req.u.rw.id;
81f35161577236 Bob Liu 2015-11-14 282 rinfo->shadow[free].req.u.rw.id = 0x0fffffee; /* debug */
9f27ee59503865 Jeremy Fitzhardinge 2007-07-17 283 return free;
9f27ee59503865 Jeremy Fitzhardinge 2007-07-17 284 }
9f27ee59503865 Jeremy Fitzhardinge 2007-07-17 285
:::::: The code at line 280 was first introduced by commit
:::::: 81f351615772365d46ceeac3e50c9dd4e8f9dc89 xen/blkfront: separate per ring information out of device info
:::::: TO: Bob Liu <bob.liu(a)oracle.com>
:::::: CC: Konrad Rzeszutek Wilk <konrad.wilk(a)oracle.com>
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 4 months
drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c:1370:4: warning: Variable 'num_of_active_display' is modified but its new value is never used. [unreadVariable]
by kernel test robot
CC: kbuild-all(a)lists.01.org
CC: linux-kernel(a)vger.kernel.org
TO: Alex Deucher <alexander.deucher(a)amd.com>
CC: Evan Quan <evan.quan(a)amd.com>
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: a5e13c6df0e41702d2b2c77c8ad41677ebb065b3
commit: 75145aab7a0d865b361de687b201e8c4b76425eb drm/amdgpu/swsmu: clean up a bunch of stale interfaces
date: 6 months ago
:::::: branch date: 12 hours ago
:::::: commit date: 6 months ago
compiler: alpha-linux-gcc (GCC) 9.3.0
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
cppcheck possible warnings: (new ones prefixed by >>, may not real problems)
In file included from drivers/gpu/drm/amd/amdgpu/../pm/swsmu/amdgpu_smu.c:
>> drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c:1370:4: warning: Variable 'num_of_active_display' is modified but its new value is never used. [unreadVariable]
num_of_active_display++;
^
vim +/num_of_active_display +1370 drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
137d63abbf6a08 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2018-11-29 1350
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1351 int smu_display_configuration_change(struct smu_context *smu,
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1352 const struct amd_pp_display_configuration *display_config)
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1353 {
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1354 int index = 0;
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1355 int num_of_active_display = 0;
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1356
2b7ad277e96577 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Evan Quan 2020-05-25 1357 if (!smu->pm_enabled || !smu->adev->pm.dpm_enabled)
2b7ad277e96577 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Evan Quan 2020-05-25 1358 return -EOPNOTSUPP;
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1359
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1360 if (!display_config)
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1361 return -EINVAL;
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1362
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1363 mutex_lock(&smu->mutex);
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1364
ce63d8f8b55d28 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Evan Quan 2020-06-08 1365 smu_set_min_dcef_deep_sleep(smu,
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1366 display_config->min_dcef_deep_sleep_set_clk / 100);
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1367
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1368 for (index = 0; index < display_config->num_path_including_non_display; index++) {
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1369 if (display_config->displays[index].controller_id != 0)
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 @1370 num_of_active_display++;
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1371 }
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1372
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1373 mutex_unlock(&smu->mutex);
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1374
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1375 return 0;
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1376 }
94ed6d0cfdb867 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c Huang Rui 2019-01-11 1377
:::::: The code at line 1370 was first introduced by commit
:::::: 94ed6d0cfdb867be9bf05f03d682980bce5d0036 drm/amd/powerplay: add smu display configuration change function
:::::: TO: Huang Rui <ray.huang(a)amd.com>
:::::: CC: Alex Deucher <alexander.deucher(a)amd.com>
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 4 months
Re: [PATCH 2/4] rtc: abx80x: Enable SQW output
by Dan Carpenter
Hi Kirill,
url: https://github.com/0day-ci/linux/commits/Kirill-Kapranov/rtc-abx80x-Enabl...
base: https://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git rtc-next
config: i386-randconfig-m021-20210328 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
Reported-by: Dan Carpenter <dan.carpenter(a)oracle.com>
smatch warnings:
drivers/rtc/rtc-abx80x.c:561 sqw_set() error: uninitialized symbol 'retval'.
vim +/retval +561 drivers/rtc/rtc-abx80x.c
3f6d456de4f347 Kirill Kapranov 2021-03-29 527 static int sqw_set(struct i2c_client *client, const char *buf)
3f6d456de4f347 Kirill Kapranov 2021-03-29 528 {
3f6d456de4f347 Kirill Kapranov 2021-03-29 529 union abx8xx_reg_sqw reg_sqw;
3f6d456de4f347 Kirill Kapranov 2021-03-29 530 int retval;
3f6d456de4f347 Kirill Kapranov 2021-03-29 531
3f6d456de4f347 Kirill Kapranov 2021-03-29 532 reg_sqw.val = i2c_smbus_read_byte_data(client, ABX8XX_REG_SQW);
3f6d456de4f347 Kirill Kapranov 2021-03-29 533 if (reg_sqw.val < 0)
3f6d456de4f347 Kirill Kapranov 2021-03-29 534 goto err;
"retval" not set. Forgetting to set the error code is the canonical
bug for do nothing gotos like this.
3f6d456de4f347 Kirill Kapranov 2021-03-29 535
3f6d456de4f347 Kirill Kapranov 2021-03-29 536 if (sysfs_streq(buf, "none")) {
3f6d456de4f347 Kirill Kapranov 2021-03-29 537 reg_sqw.sqwe = 0;
3f6d456de4f347 Kirill Kapranov 2021-03-29 538 dev_info(&client->dev, "sqw output disabled\n");
3f6d456de4f347 Kirill Kapranov 2021-03-29 539 } else {
3f6d456de4f347 Kirill Kapranov 2021-03-29 540 int idx = __sysfs_match_string(sqfs, SQFS_COUNT, buf);
3f6d456de4f347 Kirill Kapranov 2021-03-29 541
3f6d456de4f347 Kirill Kapranov 2021-03-29 542 if (idx < 0)
3f6d456de4f347 Kirill Kapranov 2021-03-29 543 return idx;
^^^^^^^^^^^
These are direct returns. Just do direct returns everywhere (more
readably, fewer bugs).
3f6d456de4f347 Kirill Kapranov 2021-03-29 544
3f6d456de4f347 Kirill Kapranov 2021-03-29 545 if (abx80x_is_rc_mode(client) && !valid_for_rc_mode[idx])
3f6d456de4f347 Kirill Kapranov 2021-03-29 546 dev_warn(&client->dev, "sqw frequency %s valid only in xt mode\n",
3f6d456de4f347 Kirill Kapranov 2021-03-29 547 sqfs[idx]);
3f6d456de4f347 Kirill Kapranov 2021-03-29 548
3f6d456de4f347 Kirill Kapranov 2021-03-29 549 dev_info(&client->dev, "sqw output enabled @ %s\n", sqfs[idx]);
3f6d456de4f347 Kirill Kapranov 2021-03-29 550 reg_sqw.sqwe = 1;
3f6d456de4f347 Kirill Kapranov 2021-03-29 551 reg_sqw.sqws = idx;
3f6d456de4f347 Kirill Kapranov 2021-03-29 552 }
3f6d456de4f347 Kirill Kapranov 2021-03-29 553
3f6d456de4f347 Kirill Kapranov 2021-03-29 554 retval = i2c_smbus_write_byte_data(client, ABX8XX_REG_SQW, reg_sqw.val);
3f6d456de4f347 Kirill Kapranov 2021-03-29 555 if (retval < 0)
3f6d456de4f347 Kirill Kapranov 2021-03-29 556 goto err;
3f6d456de4f347 Kirill Kapranov 2021-03-29 557
3f6d456de4f347 Kirill Kapranov 2021-03-29 558 return 0;
3f6d456de4f347 Kirill Kapranov 2021-03-29 559 err:
3f6d456de4f347 Kirill Kapranov 2021-03-29 560 dev_err(&client->dev, "Failed to set SQW\n");
3f6d456de4f347 Kirill Kapranov 2021-03-29 @561 return retval;
^^^^^^^^^^^^^
3f6d456de4f347 Kirill Kapranov 2021-03-29 562
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 4 months
Re: [PATCH 2/4] rtc: abx80x: Enable SQW output
by kernel test robot
CC: kbuild-all(a)lists.01.org
In-Reply-To: <20210328210232.10395-3-kirill.kapranov(a)compulab.co.il>
References: <20210328210232.10395-3-kirill.kapranov(a)compulab.co.il>
TO: Kirill Kapranov <kirill.kapranov(a)compulab.co.il>
TO: a.zummo(a)towertech.it
TO: alexandre.belloni(a)bootlin.com
TO: phdm(a)macqel.be
TO: linux-rtc(a)vger.kernel.org
TO: linux-kernel(a)vger.kernel.org
CC: Kirill Kapranov <kirill.kapranov(a)compulab.co.il>
Hi Kirill,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on abelloni/rtc-next]
[also build test WARNING on v5.12-rc5 next-20210326]
[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]
url: https://github.com/0day-ci/linux/commits/Kirill-Kapranov/rtc-abx80x-Enabl...
base: https://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git rtc-next
:::::: branch date: 6 hours ago
:::::: commit date: 6 hours ago
config: i386-randconfig-m021-20210328 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
Reported-by: Dan Carpenter <dan.carpenter(a)oracle.com>
smatch warnings:
drivers/rtc/rtc-abx80x.c:561 sqw_set() error: uninitialized symbol 'retval'.
vim +/retval +561 drivers/rtc/rtc-abx80x.c
3f6d456de4f347 Kirill Kapranov 2021-03-29 526
3f6d456de4f347 Kirill Kapranov 2021-03-29 527 static int sqw_set(struct i2c_client *client, const char *buf)
3f6d456de4f347 Kirill Kapranov 2021-03-29 528 {
3f6d456de4f347 Kirill Kapranov 2021-03-29 529 union abx8xx_reg_sqw reg_sqw;
3f6d456de4f347 Kirill Kapranov 2021-03-29 530 int retval;
3f6d456de4f347 Kirill Kapranov 2021-03-29 531
3f6d456de4f347 Kirill Kapranov 2021-03-29 532 reg_sqw.val = i2c_smbus_read_byte_data(client, ABX8XX_REG_SQW);
3f6d456de4f347 Kirill Kapranov 2021-03-29 533 if (reg_sqw.val < 0)
3f6d456de4f347 Kirill Kapranov 2021-03-29 534 goto err;
3f6d456de4f347 Kirill Kapranov 2021-03-29 535
3f6d456de4f347 Kirill Kapranov 2021-03-29 536 if (sysfs_streq(buf, "none")) {
3f6d456de4f347 Kirill Kapranov 2021-03-29 537 reg_sqw.sqwe = 0;
3f6d456de4f347 Kirill Kapranov 2021-03-29 538 dev_info(&client->dev, "sqw output disabled\n");
3f6d456de4f347 Kirill Kapranov 2021-03-29 539 } else {
3f6d456de4f347 Kirill Kapranov 2021-03-29 540 int idx = __sysfs_match_string(sqfs, SQFS_COUNT, buf);
3f6d456de4f347 Kirill Kapranov 2021-03-29 541
3f6d456de4f347 Kirill Kapranov 2021-03-29 542 if (idx < 0)
3f6d456de4f347 Kirill Kapranov 2021-03-29 543 return idx;
3f6d456de4f347 Kirill Kapranov 2021-03-29 544
3f6d456de4f347 Kirill Kapranov 2021-03-29 545 if (abx80x_is_rc_mode(client) && !valid_for_rc_mode[idx])
3f6d456de4f347 Kirill Kapranov 2021-03-29 546 dev_warn(&client->dev, "sqw frequency %s valid only in xt mode\n",
3f6d456de4f347 Kirill Kapranov 2021-03-29 547 sqfs[idx]);
3f6d456de4f347 Kirill Kapranov 2021-03-29 548
3f6d456de4f347 Kirill Kapranov 2021-03-29 549 dev_info(&client->dev, "sqw output enabled @ %s\n", sqfs[idx]);
3f6d456de4f347 Kirill Kapranov 2021-03-29 550 reg_sqw.sqwe = 1;
3f6d456de4f347 Kirill Kapranov 2021-03-29 551 reg_sqw.sqws = idx;
3f6d456de4f347 Kirill Kapranov 2021-03-29 552 }
3f6d456de4f347 Kirill Kapranov 2021-03-29 553
3f6d456de4f347 Kirill Kapranov 2021-03-29 554 retval = i2c_smbus_write_byte_data(client, ABX8XX_REG_SQW, reg_sqw.val);
3f6d456de4f347 Kirill Kapranov 2021-03-29 555 if (retval < 0)
3f6d456de4f347 Kirill Kapranov 2021-03-29 556 goto err;
3f6d456de4f347 Kirill Kapranov 2021-03-29 557
3f6d456de4f347 Kirill Kapranov 2021-03-29 558 return 0;
3f6d456de4f347 Kirill Kapranov 2021-03-29 559 err:
3f6d456de4f347 Kirill Kapranov 2021-03-29 560 dev_err(&client->dev, "Failed to set SQW\n");
3f6d456de4f347 Kirill Kapranov 2021-03-29 @561 return retval;
3f6d456de4f347 Kirill Kapranov 2021-03-29 562
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 4 months
Re: [PATCH 4/4] dt-bindings: spi: Convert cadence-quadspi.txt to cadence-quadspi.yaml
by kernel test robot
CC: kbuild-all(a)lists.01.org
In-Reply-To: <20210326130034.15231-5-p.yadav(a)ti.com>
References: <20210326130034.15231-5-p.yadav(a)ti.com>
TO: Pratyush Yadav <p.yadav(a)ti.com>
TO: Mark Brown <broonie(a)kernel.org>
TO: Rob Herring <robh+dt(a)kernel.org>
TO: Nishanth Menon <nm(a)ti.com>
TO: Tero Kristo <kristo(a)kernel.org>
TO: linux-spi(a)vger.kernel.org
TO: devicetree(a)vger.kernel.org
TO: linux-kernel(a)vger.kernel.org
TO: linux-arm-kernel(a)lists.infradead.org
CC: Pratyush Yadav <p.yadav(a)ti.com>
CC: Vignesh Raghavendra <vigneshr(a)ti.com>
Hi Pratyush,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on next-20210326]
[cannot apply to robh/for-next spi/for-next v5.12-rc4 v5.12-rc3 v5.12-rc2 v5.12-rc4]
[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]
url: https://github.com/0day-ci/linux/commits/Pratyush-Yadav/Convert-Cadence-Q...
base: 931294922e65a23e1aad6398b9ae02df74044679
:::::: branch date: 3 days ago
:::::: commit date: 3 days ago
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce: make ARCH=arm dtbs_check
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
dtcheck warnings: (new ones prefixed by >>)
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml:0:0: /soc/l3regs@0xff800000: failed to match any schema with compatible: ['altr,l3regs', 'syscon']
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml:0:0: /soc/dwmmc0@ff704000: failed to match any schema with compatible: ['altr,socfpga-dw-mshc']
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml: nand@ff900000: $nodename:0: 'nand@ff900000' does not match '^nand-controller(@.*)?'
From schema: Documentation/devicetree/bindings/mtd/denali,nand.yaml
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml: sram@ffff0000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml: sram@ffff0000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml: sram@ffff0000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml: spi@ff705000: resets: [[6, 37]] is too short
From schema: Documentation/devicetree/bindings/spi/cdns,qspi-nor.yaml
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml: flash@0: 'partition@qspi-boot', 'partition@qspi-rootfs' do not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/dt-core.yaml
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml:0:0: /soc/rstmgr@ffd05000: failed to match any schema with compatible: ['altr,rst-mgr']
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml:0:0: /soc/snoop-control-unit@fffec000: failed to match any schema with compatible: ['arm,cortex-a9-scu']
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml:0:0: /soc/sdr@ffc25000: failed to match any schema with compatible: ['altr,sdr-ctl', 'syscon']
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml:0:0: /soc/sdramedac: failed to match any schema with compatible: ['altr,sdram-edac']
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml:0:0: /soc/sysmgr@ffd08000: failed to match any schema with compatible: ['altr,sys-mgr', 'syscon']
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml:0:0: /soc/timer@fffec600: failed to match any schema with compatible: ['arm,cortex-a9-twd-timer']
arch/arm/boot/dts/socfpga_arria5_socdk.dt.yaml: timer0@ffc08000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
--
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml:0:0: /soc/l3regs@0xff800000: failed to match any schema with compatible: ['altr,l3regs', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml:0:0: /soc/dwmmc0@ff704000: failed to match any schema with compatible: ['altr,socfpga-dw-mshc']
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml: nand@ff900000: $nodename:0: 'nand@ff900000' does not match '^nand-controller(@.*)?'
From schema: Documentation/devicetree/bindings/mtd/denali,nand.yaml
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml: sram@ffff0000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml: sram@ffff0000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml: sram@ffff0000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml: spi@ff705000: resets: [[6, 37]] is too short
From schema: Documentation/devicetree/bindings/spi/cdns,qspi-nor.yaml
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml:0:0: /soc/rstmgr@ffd05000: failed to match any schema with compatible: ['altr,rst-mgr']
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml:0:0: /soc/snoop-control-unit@fffec000: failed to match any schema with compatible: ['arm,cortex-a9-scu']
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml:0:0: /soc/sdr@ffc25000: failed to match any schema with compatible: ['altr,sdr-ctl', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml:0:0: /soc/sdramedac: failed to match any schema with compatible: ['altr,sdram-edac']
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml:0:0: /soc/sysmgr@ffd08000: failed to match any schema with compatible: ['altr,sys-mgr', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml:0:0: /soc/timer@fffec600: failed to match any schema with compatible: ['arm,cortex-a9-twd-timer']
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml: timer0@ffc08000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/timer/snps,dw-apb-timer.yaml
arch/arm/boot/dts/socfpga_cyclone5_chameleon96.dt.yaml: timer1@ffc09000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
--
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml:0:0: /soc/l3regs@0xff800000: failed to match any schema with compatible: ['altr,l3regs', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml:0:0: /soc/dwmmc0@ff704000: failed to match any schema with compatible: ['altr,socfpga-dw-mshc']
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml: nand@ff900000: $nodename:0: 'nand@ff900000' does not match '^nand-controller(@.*)?'
From schema: Documentation/devicetree/bindings/mtd/denali,nand.yaml
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml: sram@ffff0000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml: sram@ffff0000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml: sram@ffff0000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml: spi@ff705000: resets: [[6, 37]] is too short
From schema: Documentation/devicetree/bindings/spi/cdns,qspi-nor.yaml
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml:0:0: /soc/rstmgr@ffd05000: failed to match any schema with compatible: ['altr,rst-mgr']
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml:0:0: /soc/snoop-control-unit@fffec000: failed to match any schema with compatible: ['arm,cortex-a9-scu']
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml:0:0: /soc/sdr@ffc25000: failed to match any schema with compatible: ['altr,sdr-ctl', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml:0:0: /soc/sdramedac: failed to match any schema with compatible: ['altr,sdram-edac']
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml:0:0: /soc/sysmgr@ffd08000: failed to match any schema with compatible: ['altr,sys-mgr', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml:0:0: /soc/timer@fffec600: failed to match any schema with compatible: ['arm,cortex-a9-twd-timer']
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml: timer0@ffc08000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/timer/snps,dw-apb-timer.yaml
arch/arm/boot/dts/socfpga_cyclone5_mcvevk.dt.yaml: timer1@ffc09000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
--
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml:0:0: /soc/l3regs@0xff800000: failed to match any schema with compatible: ['altr,l3regs', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml:0:0: /soc/dwmmc0@ff704000: failed to match any schema with compatible: ['altr,socfpga-dw-mshc']
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml: nand@ff900000: $nodename:0: 'nand@ff900000' does not match '^nand-controller(@.*)?'
From schema: Documentation/devicetree/bindings/mtd/denali,nand.yaml
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml: sram@ffff0000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml: sram@ffff0000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml: sram@ffff0000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml: spi@ff705000: resets: [[6, 37]] is too short
From schema: Documentation/devicetree/bindings/spi/cdns,qspi-nor.yaml
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml: n25q00@0: 'partition@qspi-boot', 'partition@qspi-rootfs' do not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/dt-core.yaml
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml:0:0: /soc/spi@ff705000/n25q00@0: failed to match any schema with compatible: ['n25q00']
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml:0:0: /soc/rstmgr@ffd05000: failed to match any schema with compatible: ['altr,rst-mgr']
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml:0:0: /soc/snoop-control-unit@fffec000: failed to match any schema with compatible: ['arm,cortex-a9-scu']
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml:0:0: /soc/sdr@ffc25000: failed to match any schema with compatible: ['altr,sdr-ctl', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml:0:0: /soc/sdramedac: failed to match any schema with compatible: ['altr,sdram-edac']
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml:0:0: /soc/spi@fff00000/spidev@0: failed to match any schema with compatible: ['rohm,dh2228fv']
arch/arm/boot/dts/socfpga_cyclone5_socdk.dt.yaml:0:0: /soc/sysmgr@ffd08000: failed to match any schema with compatible: ['altr,sys-mgr', 'syscon']
--
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml:0:0: /soc/l3regs@0xff800000: failed to match any schema with compatible: ['altr,l3regs', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml:0:0: /soc/dwmmc0@ff704000: failed to match any schema with compatible: ['altr,socfpga-dw-mshc']
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml: nand@ff900000: $nodename:0: 'nand@ff900000' does not match '^nand-controller(@.*)?'
From schema: Documentation/devicetree/bindings/mtd/denali,nand.yaml
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml: sram@ffff0000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml: sram@ffff0000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml: sram@ffff0000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml: spi@ff705000: resets: [[6, 37]] is too short
From schema: Documentation/devicetree/bindings/spi/cdns,qspi-nor.yaml
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml:0:0: /soc/rstmgr@ffd05000: failed to match any schema with compatible: ['altr,rst-mgr']
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml:0:0: /soc/snoop-control-unit@fffec000: failed to match any schema with compatible: ['arm,cortex-a9-scu']
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml:0:0: /soc/sdr@ffc25000: failed to match any schema with compatible: ['altr,sdr-ctl', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml:0:0: /soc/sdramedac: failed to match any schema with compatible: ['altr,sdram-edac']
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml:0:0: /soc/sysmgr@ffd08000: failed to match any schema with compatible: ['altr,sys-mgr', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml:0:0: /soc/timer@fffec600: failed to match any schema with compatible: ['arm,cortex-a9-twd-timer']
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml: timer0@ffc08000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/timer/snps,dw-apb-timer.yaml
arch/arm/boot/dts/socfpga_cyclone5_de0_nano_soc.dt.yaml: timer1@ffc09000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
--
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml:0:0: /soc/l3regs@0xff800000: failed to match any schema with compatible: ['altr,l3regs', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml:0:0: /soc/dwmmc0@ff704000: failed to match any schema with compatible: ['altr,socfpga-dw-mshc']
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml: nand@ff900000: $nodename:0: 'nand@ff900000' does not match '^nand-controller(@.*)?'
From schema: Documentation/devicetree/bindings/mtd/denali,nand.yaml
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml: sram@ffff0000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml: sram@ffff0000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml: sram@ffff0000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml: spi@ff705000: resets: [[6, 37]] is too short
From schema: Documentation/devicetree/bindings/spi/cdns,qspi-nor.yaml
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml:0:0: /soc/spi@ff705000/flash@0: failed to match any schema with compatible: ['n25q00']
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml:0:0: /soc/rstmgr@ffd05000: failed to match any schema with compatible: ['altr,rst-mgr']
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml:0:0: /soc/snoop-control-unit@fffec000: failed to match any schema with compatible: ['arm,cortex-a9-scu']
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml:0:0: /soc/sdr@ffc25000: failed to match any schema with compatible: ['altr,sdr-ctl', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml:0:0: /soc/sdramedac: failed to match any schema with compatible: ['altr,sdram-edac']
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml:0:0: /soc/sysmgr@ffd08000: failed to match any schema with compatible: ['altr,sys-mgr', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml:0:0: /soc/timer@fffec600: failed to match any schema with compatible: ['arm,cortex-a9-twd-timer']
arch/arm/boot/dts/socfpga_cyclone5_sockit.dt.yaml: timer0@ffc08000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/timer/snps,dw-apb-timer.yaml
--
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml:0:0: /soc/l3regs@0xff800000: failed to match any schema with compatible: ['altr,l3regs', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml:0:0: /soc/dwmmc0@ff704000: failed to match any schema with compatible: ['altr,socfpga-dw-mshc']
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml: nand@ff900000: $nodename:0: 'nand@ff900000' does not match '^nand-controller(@.*)?'
From schema: Documentation/devicetree/bindings/mtd/denali,nand.yaml
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml: sram@ffff0000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml: sram@ffff0000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml: sram@ffff0000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml: spi@ff705000: resets: [[6, 37]] is too short
From schema: Documentation/devicetree/bindings/spi/cdns,qspi-nor.yaml
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml:0:0: /soc/rstmgr@ffd05000: failed to match any schema with compatible: ['altr,rst-mgr']
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml:0:0: /soc/snoop-control-unit@fffec000: failed to match any schema with compatible: ['arm,cortex-a9-scu']
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml:0:0: /soc/sdr@ffc25000: failed to match any schema with compatible: ['altr,sdr-ctl', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml:0:0: /soc/sdramedac: failed to match any schema with compatible: ['altr,sdram-edac']
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml:0:0: /soc/sysmgr@ffd08000: failed to match any schema with compatible: ['altr,sys-mgr', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml:0:0: /soc/timer@fffec600: failed to match any schema with compatible: ['arm,cortex-a9-twd-timer']
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml: timer0@ffc08000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/timer/snps,dw-apb-timer.yaml
arch/arm/boot/dts/socfpga_cyclone5_socrates.dt.yaml: timer1@ffc09000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
--
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml:0:0: /soc/l3regs@0xff800000: failed to match any schema with compatible: ['altr,l3regs', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml:0:0: /soc/dwmmc0@ff704000: failed to match any schema with compatible: ['altr,socfpga-dw-mshc']
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml: nand@ff900000: $nodename:0: 'nand@ff900000' does not match '^nand-controller(@.*)?'
From schema: Documentation/devicetree/bindings/mtd/denali,nand.yaml
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml: sram@ffff0000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml: sram@ffff0000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml: sram@ffff0000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml: spi@ff705000: resets: [[6, 37]] is too short
From schema: Documentation/devicetree/bindings/spi/cdns,qspi-nor.yaml
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml:0:0: /soc/rstmgr@ffd05000: failed to match any schema with compatible: ['altr,rst-mgr']
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml:0:0: /soc/snoop-control-unit@fffec000: failed to match any schema with compatible: ['arm,cortex-a9-scu']
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml:0:0: /soc/sdr@ffc25000: failed to match any schema with compatible: ['altr,sdr-ctl', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml:0:0: /soc/sdramedac: failed to match any schema with compatible: ['altr,sdram-edac']
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml:0:0: /soc/sysmgr@ffd08000: failed to match any schema with compatible: ['altr,sys-mgr', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml:0:0: /soc/timer@fffec600: failed to match any schema with compatible: ['arm,cortex-a9-twd-timer']
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml: timer0@ffc08000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/timer/snps,dw-apb-timer.yaml
arch/arm/boot/dts/socfpga_cyclone5_sodia.dt.yaml: timer1@ffc09000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
--
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml:0:0: /soc/l3regs@0xff800000: failed to match any schema with compatible: ['altr,l3regs', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml:0:0: /soc/dwmmc0@ff704000: failed to match any schema with compatible: ['altr,socfpga-dw-mshc']
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml: nand@ff900000: $nodename:0: 'nand@ff900000' does not match '^nand-controller(@.*)?'
From schema: Documentation/devicetree/bindings/mtd/denali,nand.yaml
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml: sram@ffff0000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml: sram@ffff0000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml: sram@ffff0000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml: spi@ff705000: resets: [[6, 37]] is too short
From schema: Documentation/devicetree/bindings/spi/cdns,qspi-nor.yaml
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml:0:0: /soc/spi@ff705000/n25q128@0: failed to match any schema with compatible: ['n25q128']
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml:0:0: /soc/spi@ff705000/n25q00@1: failed to match any schema with compatible: ['n25q00']
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml:0:0: /soc/rstmgr@ffd05000: failed to match any schema with compatible: ['altr,rst-mgr']
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml:0:0: /soc/snoop-control-unit@fffec000: failed to match any schema with compatible: ['arm,cortex-a9-scu']
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml:0:0: /soc/sdr@ffc25000: failed to match any schema with compatible: ['altr,sdr-ctl', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml:0:0: /soc/sdramedac: failed to match any schema with compatible: ['altr,sdram-edac']
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml:0:0: /soc/sysmgr@ffd08000: failed to match any schema with compatible: ['altr,sys-mgr', 'syscon']
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml:0:0: /soc/timer@fffec600: failed to match any schema with compatible: ['arm,cortex-a9-twd-timer']
arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dt.yaml: timer0@ffc08000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
--
arch/arm/boot/dts/socfpga_vt.dt.yaml:0:0: /soc/l3regs@0xff800000: failed to match any schema with compatible: ['altr,l3regs', 'syscon']
arch/arm/boot/dts/socfpga_vt.dt.yaml:0:0: /soc/dwmmc0@ff704000: failed to match any schema with compatible: ['altr,socfpga-dw-mshc']
arch/arm/boot/dts/socfpga_vt.dt.yaml: nand@ff900000: $nodename:0: 'nand@ff900000' does not match '^nand-controller(@.*)?'
From schema: Documentation/devicetree/bindings/mtd/denali,nand.yaml
arch/arm/boot/dts/socfpga_vt.dt.yaml: sram@ffff0000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_vt.dt.yaml: sram@ffff0000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/socfpga_vt.dt.yaml: sram@ffff0000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/socfpga_vt.dt.yaml: spi@ff705000: resets: [[6, 37]] is too short
From schema: Documentation/devicetree/bindings/spi/cdns,qspi-nor.yaml
arch/arm/boot/dts/socfpga_vt.dt.yaml:0:0: /soc/rstmgr@ffd05000: failed to match any schema with compatible: ['altr,rst-mgr']
arch/arm/boot/dts/socfpga_vt.dt.yaml:0:0: /soc/snoop-control-unit@fffec000: failed to match any schema with compatible: ['arm,cortex-a9-scu']
arch/arm/boot/dts/socfpga_vt.dt.yaml:0:0: /soc/sdr@ffc25000: failed to match any schema with compatible: ['altr,sdr-ctl', 'syscon']
arch/arm/boot/dts/socfpga_vt.dt.yaml:0:0: /soc/sdramedac: failed to match any schema with compatible: ['altr,sdram-edac']
arch/arm/boot/dts/socfpga_vt.dt.yaml:0:0: /soc/sysmgr@ffd08000: failed to match any schema with compatible: ['altr,sys-mgr', 'syscon']
arch/arm/boot/dts/socfpga_vt.dt.yaml:0:0: /soc/timer@fffec600: failed to match any schema with compatible: ['arm,cortex-a9-twd-timer']
arch/arm/boot/dts/socfpga_vt.dt.yaml: timer0@ffc08000: 'reset-names' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/timer/snps,dw-apb-timer.yaml
arch/arm/boot/dts/socfpga_vt.dt.yaml: timer0@ffc08000: More than one condition true in oneOf schema:
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 4 months