From: kernel test robot <lkp@intel.com>
To: "Jason-JH.Lin" <jason-jh.lin@mediatek.com>,
Chun-Kuang Hu <chunkuang.hu@kernel.org>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Matthias Brugger <matthias.bgg@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>
Cc: kbuild-all@lists.01.org, devicetree@vger.kernel.org,
"Jason-JH.Lin" <jason-jh.lin@mediatek.com>,
Singo Chang <singo.chang@mediatek.com>,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
Project_Global_Chrome_Upstream_Group@mediatek.com,
Rex-BC Chen <rex-bc.chen@mediatek.com>,
linux-mediatek@lists.infradead.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v3 4/9] drm/mediatek: Add gamma support different lut_size for other SoC
Date: Mon, 12 Sep 2022 05:10:06 +0800 [thread overview]
Message-ID: <202209120412.a3tFZuO9-lkp@intel.com> (raw)
In-Reply-To: <20220911153734.24243-5-jason-jh.lin@mediatek.com>
Hi Jason-JH.Lin",
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on next-20220909]
[also build test WARNING on v6.0-rc4]
[cannot apply to drm-misc/drm-misc-next robh/for-next drm/drm-next linus/master v6.0-rc4 v6.0-rc3 v6.0-rc2]
[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/Jason-JH-Lin/Add-gamma-lut-support-for-mt8195/20220911-233949
base: 9a82ccda91ed2b40619cb3c10d446ae1f97bab6e
config: arm-allyesconfig (https://download.01.org/0day-ci/archive/20220912/202209120412.a3tFZuO9-lkp@intel.com/config)
compiler: arm-linux-gnueabi-gcc (GCC) 12.1.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/intel-lab-lkp/linux/commit/1d5b909c49fd62f1e6055fd3d077b9c5fae53e00
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Jason-JH-Lin/Add-gamma-lut-support-for-mt8195/20220911-233949
git checkout 1d5b909c49fd62f1e6055fd3d077b9c5fae53e00
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arm SHELL=/bin/bash
If you fix the issue, kindly add following tag where applicable
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> drivers/gpu/drm/mediatek/mtk_disp_gamma.c:59:14: warning: no previous prototype for 'mtk_gamma_get_size' [-Wmissing-prototypes]
59 | unsigned int mtk_gamma_get_size(struct device *dev)
| ^~~~~~~~~~~~~~~~~~
vim +/mtk_gamma_get_size +59 drivers/gpu/drm/mediatek/mtk_disp_gamma.c
58
> 59 unsigned int mtk_gamma_get_size(struct device *dev)
60 {
61 struct mtk_disp_gamma *gamma = dev_get_drvdata(dev);
62 unsigned int lut_size = LUT_SIZE_DEFAULT;
63
64 if (gamma && gamma->data)
65 lut_size = gamma->data->lut_size;
66
67 return lut_size;
68 }
69
--
0-DAY CI Kernel Test Service
https://01.org/lkp
next parent reply other threads:[~2022-09-11 21:10 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20220911153734.24243-1-jason-jh.lin@mediatek.com>
[not found] ` <20220911153734.24243-5-jason-jh.lin@mediatek.com>
2022-09-11 21:10 ` kernel test robot [this message]
2022-09-12 10:24 ` AngeloGioacchino Del Regno
2022-09-14 1:33 ` Jason-JH Lin
2022-09-14 1:35 ` Jason-JH Lin
[not found] ` <20220911153734.24243-4-jason-jh.lin@mediatek.com>
2022-09-12 10:12 ` [PATCH v3 3/9] drm/mediatek: Adjust mtk_drm_gamma_set_common parameters AngeloGioacchino Del Regno
2022-09-14 1:29 ` Jason-JH Lin
[not found] ` <20220911153734.24243-6-jason-jh.lin@mediatek.com>
2022-09-12 10:25 ` [PATCH v3 5/9] drm/mediatek: Add gamma support different lut_bits for other SoC AngeloGioacchino Del Regno
2022-09-14 1:36 ` Jason-JH Lin
[not found] ` <20220911153734.24243-9-jason-jh.lin@mediatek.com>
2022-09-12 10:26 ` [PATCH v3 8/9] drm/mediatek: Add clear RELAY_MODE bit to set gamma AngeloGioacchino Del Regno
2022-09-14 1:37 ` Jason-JH Lin
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=202209120412.a3tFZuO9-lkp@intel.com \
--to=lkp@intel.com \
--cc=Project_Global_Chrome_Upstream_Group@mediatek.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=chunkuang.hu@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=jason-jh.lin@mediatek.com \
--cc=kbuild-all@lists.01.org \
--cc=krzk@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=rex-bc.chen@mediatek.com \
--cc=robh+dt@kernel.org \
--cc=singo.chang@mediatek.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®