Re: [PATCH v6 5/9] iio: adc: qcom-spmi-rradc: introduce round robin adc
by kernel test robot
Hi Caleb,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on robh/for-next]
[also build test WARNING on jic23-iio/togreg lee-mfd/for-mfd-next linus/master v5.17-rc4 next-20220215]
[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/Caleb-Connolly/iio-adc-introduce...
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: arm-allmodconfig (https://download.01.org/0day-ci/archive/20220216/202202161429.mqmnE8To-lk...)
compiler: arm-linux-gnueabi-gcc (GCC) 11.2.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/0day-ci/linux/commit/c0b026333a7bf04ff90864bda97632b87...
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Caleb-Connolly/iio-adc-introduce-Qualcomm-SPMI-Round-Robin-ADC/20220216-011807
git checkout c0b026333a7bf04ff90864bda97632b87fa5a090
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=arm SHELL=/bin/bash drivers/iio/adc/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
In file included from include/linux/device.h:15,
from include/linux/platform_device.h:13,
from drivers/iio/adc/qcom-spmi-rradc.c:15:
drivers/iio/adc/qcom-spmi-rradc.c: In function 'rradc_read_raw':
>> drivers/iio/adc/qcom-spmi-rradc.c:742:36: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long unsigned int' [-Wformat=]
742 | dev_err(chip->dev, "Invalid channel index:%d\n",
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/dev_printk.h:110:30: note: in definition of macro 'dev_printk_index_wrap'
110 | _p_func(dev, fmt, ##__VA_ARGS__); \
| ^~~
include/linux/dev_printk.h:144:56: note: in expansion of macro 'dev_fmt'
144 | dev_printk_index_wrap(_dev_err, KERN_ERR, dev, dev_fmt(fmt), ##__VA_ARGS__)
| ^~~~~~~
drivers/iio/adc/qcom-spmi-rradc.c:742:17: note: in expansion of macro 'dev_err'
742 | dev_err(chip->dev, "Invalid channel index:%d\n",
| ^~~~~~~
drivers/iio/adc/qcom-spmi-rradc.c:742:60: note: format string is defined here
742 | dev_err(chip->dev, "Invalid channel index:%d\n",
| ~^
| |
| int
| %ld
vim +742 drivers/iio/adc/qcom-spmi-rradc.c
731
732 static int rradc_read_raw(struct iio_dev *indio_dev,
733 struct iio_chan_spec const *chan_spec, int *val,
734 int *val2, long mask)
735 {
736 struct rradc_chip *chip = iio_priv(indio_dev);
737 const struct rradc_channel *chan;
738 int ret;
739 u16 adc_code;
740
741 if (chan_spec->address >= RR_ADC_CHAN_MAX) {
> 742 dev_err(chip->dev, "Invalid channel index:%d\n",
743 chan_spec->address);
744 return -EINVAL;
745 }
746
747 switch (mask) {
748 case IIO_CHAN_INFO_SCALE:
749 return rradc_read_scale(chip, chan_spec->address, val, val2);
750 case IIO_CHAN_INFO_OFFSET:
751 return rradc_read_offset(chip, chan_spec->address, val);
752 case IIO_CHAN_INFO_RAW:
753 chan = &rradc_chans[chan_spec->address];
754 ret = rradc_do_conversion(chip, chan_spec->address, &adc_code);
755 if (ret < 0)
756 return ret;
757
758 *val = adc_code;
759 return IIO_VAL_INT;
760 case IIO_CHAN_INFO_PROCESSED:
761 chan = &rradc_chans[chan_spec->address];
762 if (!chan->scale_fn)
763 return -EINVAL;
764 ret = rradc_do_conversion(chip, chan_spec->address, &adc_code);
765 if (ret < 0)
766 return ret;
767
768 *val = chan->scale_fn(chip, adc_code, val);
769 return IIO_VAL_INT;
770 default:
771 return -EINVAL;
772 }
773 }
774
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
7 months
Re: [RESEND v13 07/10] ASoC: qcom: Add support for codec dma driver
by kernel test robot
Hi Srinivasa,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on broonie-sound/for-next]
[also build test WARNING on v5.17-rc4 next-20220215]
[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/Srinivasa-Rao-Mandadapu/Add-supp...
base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
config: csky-randconfig-s032-20220216 (https://download.01.org/0day-ci/archive/20220216/202202161407.5MOObZwm-lk...)
compiler: csky-linux-gcc (GCC) 11.2.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# apt-get install sparse
# sparse version: v0.6.4-dirty
# https://github.com/0day-ci/linux/commit/e81c7e5d842d2b8039700a71557683e88...
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Srinivasa-Rao-Mandadapu/Add-support-for-audio-on-SC7280-based-targets/20220214-230256
git checkout e81c7e5d842d2b8039700a71557683e88ce0162d
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' O=build_dir ARCH=csky SHELL=/bin/bash sound/soc/qcom/
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 >>)
>> sound/soc/qcom/lpass-platform.c:1218:52: sparse: sparse: incorrect type in initializer (different address spaces) @@ expected void [noderef] __iomem *dma_buf @@ got unsigned char * @@
sound/soc/qcom/lpass-platform.c:1218:52: sparse: expected void [noderef] __iomem *dma_buf
sound/soc/qcom/lpass-platform.c:1218:52: sparse: got unsigned char *
vim +1218 sound/soc/qcom/lpass-platform.c
1209
1210 static int lpass_platform_copy(struct snd_soc_component *component,
1211 struct snd_pcm_substream *substream, int channel,
1212 unsigned long pos, void __user *buf, unsigned long bytes)
1213 {
1214 struct snd_pcm_runtime *rt = substream->runtime;
1215 unsigned int dai_id = component->id;
1216 int ret = 0;
1217
> 1218 void __iomem *dma_buf = rt->dma_area + pos +
1219 channel * (rt->dma_bytes / rt->channels);
1220
1221 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
1222 if (is_cdc_dma_port(dai_id))
1223 ret = copy_from_user_toio(dma_buf, buf, bytes);
1224 else
1225 ret = copy_from_user((void __force *)dma_buf, buf, bytes);
1226 } else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
1227 if (is_cdc_dma_port(dai_id))
1228 ret = copy_to_user_fromio(buf, dma_buf, bytes);
1229 else
1230 ret = copy_to_user(buf, (void __force *)dma_buf, bytes);
1231 }
1232
1233 return ret;
1234 }
1235
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
7 months
[deller-fbdev:for-next 51/51] drivers/video/fbdev/omap2/omapfb/dss/dss.c:1209:42: error: use of undeclared identifier 'component_compare_dev'; did you mean 'component_master_del'?
by kernel test robot
tree: git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git for-next
head: 61038027aa13351c63b452a0d48c805bab1d2ce9
commit: 61038027aa13351c63b452a0d48c805bab1d2ce9 [51/51] video: fbdev: omapfb: Make use of the helper component_compare_dev
config: arm-randconfig-c002-20220216 (https://download.01.org/0day-ci/archive/20220216/202202161324.Jh1OfqAf-lk...)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project 0e628a783b935c70c80815db6c061ec84f884af5)
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
# install arm cross compiling tool for clang build
# apt-get install binutils-arm-linux-gnueabi
# https://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git/co...
git remote add deller-fbdev git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
git fetch --no-tags deller-fbdev for-next
git checkout 61038027aa13351c63b452a0d48c805bab1d2ce9
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=arm SHELL=/bin/bash drivers/video/fbdev/omap2/omapfb/dss/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
>> drivers/video/fbdev/omap2/omapfb/dss/dss.c:1209:42: error: use of undeclared identifier 'component_compare_dev'; did you mean 'component_master_del'?
component_match_add(dev->parent, match, component_compare_dev, dev);
^~~~~~~~~~~~~~~~~~~~~
component_master_del
include/linux/component.h:85:6: note: 'component_master_del' declared here
void component_master_del(struct device *,
^
1 error generated.
vim +1209 drivers/video/fbdev/omap2/omapfb/dss/dss.c
1195
1196 static int dss_add_child_component(struct device *dev, void *data)
1197 {
1198 struct component_match **match = data;
1199
1200 /*
1201 * HACK
1202 * We don't have a working driver for rfbi, so skip it here always.
1203 * Otherwise dss will never get probed successfully, as it will wait
1204 * for rfbi to get probed.
1205 */
1206 if (strstr(dev_name(dev), "rfbi"))
1207 return 0;
1208
> 1209 component_match_add(dev->parent, match, component_compare_dev, dev);
1210
1211 return 0;
1212 }
1213
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
7 months
[ammarfaizi2-block:axboe/linux-block/m1-test 248/382] undefined reference to `apple_sart_add_allowed_region'
by kernel test robot
tree: https://github.com/ammarfaizi2/linux-block axboe/linux-block/m1-test
head: 5adfbb595194191bad98c47447ddbee7d3b60b8f
commit: 4af74948141263ed097ad48f8845871d16410b08 [248/382] WIP: nvme-apple: add initial Apple SoC NVMe driver
config: parisc-randconfig-r015-20220216 (https://download.01.org/0day-ci/archive/20220216/202202161307.qyEsGhGi-lk...)
compiler: hppa-linux-gcc (GCC) 11.2.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/ammarfaizi2/linux-block/commit/4af74948141263ed097ad48...
git remote add ammarfaizi2-block https://github.com/ammarfaizi2/linux-block
git fetch --no-tags ammarfaizi2-block axboe/linux-block/m1-test
git checkout 4af74948141263ed097ad48f8845871d16410b08
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=parisc SHELL=/bin/bash
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
hppa-linux-ld: drivers/nvme/host/apple.o: in function `apple_nvme_sart_dma_alloc':
>> (.text+0x6f0): undefined reference to `apple_sart_add_allowed_region'
hppa-linux-ld: drivers/nvme/host/apple.o: in function `apple_nvme_probe':
>> (.text+0x9d0): undefined reference to `apple_sart_get'
>> hppa-linux-ld: (.text+0xcc0): undefined reference to `devm_apple_rtkit_init'
hppa-linux-ld: drivers/nvme/host/apple.o: in function `apple_nvme_disable':
>> (.text+0x1248): undefined reference to `apple_rtkit_is_crashed'
hppa-linux-ld: drivers/nvme/host/apple.o: in function `apple_nvme_shutdown':
>> (.text+0x1400): undefined reference to `apple_rtkit_is_running'
>> hppa-linux-ld: (.text+0x1410): undefined reference to `apple_rtkit_shutdown'
hppa-linux-ld: drivers/nvme/host/apple.o: in function `apple_nvme_remove':
(.text+0x1484): undefined reference to `apple_rtkit_is_running'
hppa-linux-ld: (.text+0x1494): undefined reference to `apple_rtkit_shutdown'
hppa-linux-ld: drivers/nvme/host/apple.o: in function `apple_nvme_timeout':
(.text+0x15c8): undefined reference to `apple_rtkit_is_crashed'
hppa-linux-ld: drivers/nvme/host/apple.o: in function `apple_nvme_reset_work':
(.text+0x1738): undefined reference to `apple_rtkit_is_crashed'
>> hppa-linux-ld: (.text+0x175c): undefined reference to `apple_rtkit_is_running'
hppa-linux-ld: (.text+0x1790): undefined reference to `apple_rtkit_shutdown'
>> hppa-linux-ld: (.text+0x17a8): undefined reference to `apple_rtkit_reinit'
>> hppa-linux-ld: (.text+0x17e0): undefined reference to `apple_rtkit_boot'
hppa-linux-ld: drivers/nvme/host/apple.o: in function `apple_nvme_sart_dma_free':
>> (.text+0x1bbc): undefined reference to `apple_sart_remove_allowed_region'
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
7 months
Re: [PATCH v5 2/2] drm/msm/dp: enable widebus feature for display port
by kernel test robot
Hi Kuogee,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on drm/drm-next]
[also build test WARNING on drm-intel/for-linux-next drm-tip/drm-tip drm-exynos/exynos-drm-next tegra-drm/drm/tegra/for-next v5.17-rc4 next-20220215]
[cannot apply to airlied/drm-next]
[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/Kuogee-Hsieh/drm-msm-dp-enable-w...
base: git://anongit.freedesktop.org/drm/drm drm-next
config: hexagon-buildonly-randconfig-r005-20220216 (https://download.01.org/0day-ci/archive/20220216/202202161301.3AAqRD00-lk...)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project 0e628a783b935c70c80815db6c061ec84f884af5)
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/0day-ci/linux/commit/294e6c4f98a10e815d8673f550f4470b0...
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Kuogee-Hsieh/drm-msm-dp-enable-widebus-feature-base-on-chip-hardware-revision/20220216-052636
git checkout 294e6c4f98a10e815d8673f550f4470b0b71e34d
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=hexagon SHELL=/bin/bash drivers/gpu/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
In file included from drivers/gpu/drm/msm/hdmi/hdmi_phy_8996.c:9:
In file included from drivers/gpu/drm/msm/hdmi/hdmi.h:19:
>> drivers/gpu/drm/msm/msm_drv.h:453:6: warning: no previous prototype for function 'msm_dp_wide_bus_enable' [-Wmissing-prototypes]
bool msm_dp_wide_bus_enable(struct msm_dp *dp_display)
^
drivers/gpu/drm/msm/msm_drv.h:453:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
bool msm_dp_wide_bus_enable(struct msm_dp *dp_display)
^
static
1 warning generated.
--
In file included from drivers/gpu/drm/msm/disp/mdp5/mdp5_mdss.c:9:
>> drivers/gpu/drm/msm/msm_drv.h:453:6: warning: no previous prototype for function 'msm_dp_wide_bus_enable' [-Wmissing-prototypes]
bool msm_dp_wide_bus_enable(struct msm_dp *dp_display)
^
drivers/gpu/drm/msm/msm_drv.h:453:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
bool msm_dp_wide_bus_enable(struct msm_dp *dp_display)
^
static
drivers/gpu/drm/msm/disp/mdp5/mdp5_mdss.c:29:20: warning: unused function 'mdss_write' [-Wunused-function]
static inline void mdss_write(struct mdp5_mdss *mdp5_mdss, u32 reg, u32 data)
^
2 warnings generated.
--
In file included from drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c:17:
>> drivers/gpu/drm/msm/msm_drv.h:453:6: warning: no previous prototype for function 'msm_dp_wide_bus_enable' [-Wmissing-prototypes]
bool msm_dp_wide_bus_enable(struct msm_dp *dp_display)
^
drivers/gpu/drm/msm/msm_drv.h:453:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
bool msm_dp_wide_bus_enable(struct msm_dp *dp_display)
^
static
drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c:1155:26: warning: variable 'priv' set but not used [-Wunused-but-set-variable]
struct msm_drm_private *priv;
^
drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c:1192:26: warning: variable 'priv' set but not used [-Wunused-but-set-variable]
struct msm_drm_private *priv;
^
3 warnings generated.
vim +/msm_dp_wide_bus_enable +453 drivers/gpu/drm/msm/msm_drv.h
452
> 453 bool msm_dp_wide_bus_enable(struct msm_dp *dp_display)
454 {
455 return false;
456 }
457
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
7 months
Re: [PATCH v5 2/2] drm/msm/dp: enable widebus feature for display port
by kernel test robot
Hi Kuogee,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on drm/drm-next]
[also build test WARNING on drm-intel/for-linux-next drm-tip/drm-tip drm-exynos/exynos-drm-next tegra-drm/drm/tegra/for-next v5.17-rc4 next-20220215]
[cannot apply to airlied/drm-next]
[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/Kuogee-Hsieh/drm-msm-dp-enable-w...
base: git://anongit.freedesktop.org/drm/drm drm-next
config: nds32-randconfig-r001-20220216 (https://download.01.org/0day-ci/archive/20220216/202202161305.kkDRPK62-lk...)
compiler: nds32le-linux-gcc (GCC) 11.2.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/0day-ci/linux/commit/294e6c4f98a10e815d8673f550f4470b0...
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Kuogee-Hsieh/drm-msm-dp-enable-widebus-feature-base-on-chip-hardware-revision/20220216-052636
git checkout 294e6c4f98a10e815d8673f550f4470b0b71e34d
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=nds32 SHELL=/bin/bash drivers/gpu/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
In file included from drivers/gpu/drm/msm/msm_gpu.h:16,
from drivers/gpu/drm/msm/adreno/adreno_gpu.h:15,
from drivers/gpu/drm/msm/adreno/adreno_device.c:9:
>> drivers/gpu/drm/msm/msm_drv.h:453:6: warning: no previous prototype for 'msm_dp_wide_bus_enable' [-Wmissing-prototypes]
453 | bool msm_dp_wide_bus_enable(struct msm_dp *dp_display)
| ^~~~~~~~~~~~~~~~~~~~~~
--
In file included from drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c:17:
>> drivers/gpu/drm/msm/msm_drv.h:453:6: warning: no previous prototype for 'msm_dp_wide_bus_enable' [-Wmissing-prototypes]
453 | bool msm_dp_wide_bus_enable(struct msm_dp *dp_display)
| ^~~~~~~~~~~~~~~~~~~~~~
drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c: In function 'dpu_encoder_virt_enable':
drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c:1155:33: warning: variable 'priv' set but not used [-Wunused-but-set-variable]
1155 | struct msm_drm_private *priv;
| ^~~~
drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c: In function 'dpu_encoder_virt_disable':
drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c:1192:33: warning: variable 'priv' set but not used [-Wunused-but-set-variable]
1192 | struct msm_drm_private *priv;
| ^~~~
--
In file included from drivers/gpu/drm/msm/msm_fence.c:9:
>> drivers/gpu/drm/msm/msm_drv.h:453:6: warning: no previous prototype for 'msm_dp_wide_bus_enable' [-Wmissing-prototypes]
453 | bool msm_dp_wide_bus_enable(struct msm_dp *dp_display)
| ^~~~~~~~~~~~~~~~~~~~~~
drivers/gpu/drm/msm/msm_fence.c: In function 'msm_fence_context_alloc':
drivers/gpu/drm/msm/msm_fence.c:24:9: warning: 'strncpy' specified bound 32 equals destination size [-Wstringop-truncation]
24 | strncpy(fctx->name, name, sizeof(fctx->name));
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
vim +/msm_dp_wide_bus_enable +453 drivers/gpu/drm/msm/msm_drv.h
452
> 453 bool msm_dp_wide_bus_enable(struct msm_dp *dp_display)
454 {
455 return false;
456 }
457
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
7 months