From: kernel test robot <lkp@intel.com>
To: Javier Martinez Canillas <javierm@redhat.com>,
linux-kernel@vger.kernel.org
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
Chen-Yu Tsai <wens@kernel.org>,
Neil Armstrong <narmstrong@baylibre.com>,
David Airlie <airlied@linux.ie>,
YueHaibing <yuehaibing@huawei.com>,
Javier Martinez Canillas <javierm@redhat.com>,
dri-devel@lists.freedesktop.org, Mark Brown <broonie@kernel.org>,
Geert Uytterhoeven <geert@linux-m68k.org>,
Maxime Ripard <maxime@cerno.tech>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Subject: Re: [PATCH v2 5/5] drm/solomon: Add SSD130x OLED displays SPI support
Date: Tue, 12 Apr 2022 16:17:08 +0800 [thread overview]
Message-ID: <202204121654.38UTab7Q-lkp@intel.com> (raw)
In-Reply-To: <20220411211243.11121-6-javierm@redhat.com>
Hi Javier,
I love your patch! Perhaps something to improve:
[auto build test WARNING on drm-tip/drm-tip]
[also build test WARNING on next-20220412]
[cannot apply to drm/drm-next drm-exynos/exynos-drm-next drm-intel/for-linux-next tegra-drm/drm/tegra/for-next linus/master linux/master airlied/drm-next v5.18-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]
url: https://github.com/intel-lab-lkp/linux/commits/Javier-Martinez-Canillas/drm-solomon-Add-SSD130x-OLED-displays-SPI-support/20220412-051518
base: git://anongit.freedesktop.org/drm/drm-tip drm-tip
config: hexagon-allyesconfig (https://download.01.org/0day-ci/archive/20220412/202204121654.38UTab7Q-lkp@intel.com/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project fe2478d44e4f7f191c43fef629ac7a23d0251e72)
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/46bbef7fc1afeb9bc8241fe7636e77b5096e3d22
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Javier-Martinez-Canillas/drm-solomon-Add-SSD130x-OLED-displays-SPI-support/20220412-051518
git checkout 46bbef7fc1afeb9bc8241fe7636e77b5096e3d22
# 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/drm/solomon/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> drivers/gpu/drm/solomon/ssd130x-spi.c:161:35: warning: unused variable 'ssd130x_spi_table' [-Wunused-const-variable]
static const struct spi_device_id ssd130x_spi_table[] = {
^
1 warning generated.
vim +/ssd130x_spi_table +161 drivers/gpu/drm/solomon/ssd130x-spi.c
152
153 /*
154 * The SPI core always reports a MODALIAS uevent of the form "spi:<dev>", even
155 * if the device was registered via OF. This means that the module will not be
156 * auto loaded, unless it contains an alias that matches the MODALIAS reported.
157 *
158 * To workaround this issue, add a SPI device ID table. Even when this should
159 * not be needed for this driver to match the registered SPI devices.
160 */
> 161 static const struct spi_device_id ssd130x_spi_table[] = {
162 { "sh1106", SH1106_ID },
163 { "ssd1305", SSD1305_ID },
164 { "ssd1306", SSD1306_ID },
165 { "ssd1307", SSD1307_ID },
166 { "ssd1309", SSD1309_ID },
167 { /* sentinel */ }
168 };
169 MODULE_DEVICE_TABLE(spi, ssd130x_spi_table);
170
--
0-DAY CI Kernel Test Service
https://01.org/lkp
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Javier Martinez Canillas <javierm@redhat.com>,
linux-kernel@vger.kernel.org
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
kbuild-all@lists.01.org, Neil Armstrong <narmstrong@baylibre.com>,
David Airlie <airlied@linux.ie>,
llvm@lists.linux.dev, YueHaibing <yuehaibing@huawei.com>,
Javier Martinez Canillas <javierm@redhat.com>,
dri-devel@lists.freedesktop.org, Mark Brown <broonie@kernel.org>,
Geert Uytterhoeven <geert@linux-m68k.org>,
Maxime Ripard <maxime@cerno.tech>, Chen-Yu Tsai <wens@kernel.org>
Subject: Re: [PATCH v2 5/5] drm/solomon: Add SSD130x OLED displays SPI support
Date: Tue, 12 Apr 2022 16:17:08 +0800 [thread overview]
Message-ID: <202204121654.38UTab7Q-lkp@intel.com> (raw)
In-Reply-To: <20220411211243.11121-6-javierm@redhat.com>
Hi Javier,
I love your patch! Perhaps something to improve:
[auto build test WARNING on drm-tip/drm-tip]
[also build test WARNING on next-20220412]
[cannot apply to drm/drm-next drm-exynos/exynos-drm-next drm-intel/for-linux-next tegra-drm/drm/tegra/for-next linus/master linux/master airlied/drm-next v5.18-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]
url: https://github.com/intel-lab-lkp/linux/commits/Javier-Martinez-Canillas/drm-solomon-Add-SSD130x-OLED-displays-SPI-support/20220412-051518
base: git://anongit.freedesktop.org/drm/drm-tip drm-tip
config: hexagon-allyesconfig (https://download.01.org/0day-ci/archive/20220412/202204121654.38UTab7Q-lkp@intel.com/config)
compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project fe2478d44e4f7f191c43fef629ac7a23d0251e72)
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/46bbef7fc1afeb9bc8241fe7636e77b5096e3d22
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Javier-Martinez-Canillas/drm-solomon-Add-SSD130x-OLED-displays-SPI-support/20220412-051518
git checkout 46bbef7fc1afeb9bc8241fe7636e77b5096e3d22
# 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/drm/solomon/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
>> drivers/gpu/drm/solomon/ssd130x-spi.c:161:35: warning: unused variable 'ssd130x_spi_table' [-Wunused-const-variable]
static const struct spi_device_id ssd130x_spi_table[] = {
^
1 warning generated.
vim +/ssd130x_spi_table +161 drivers/gpu/drm/solomon/ssd130x-spi.c
152
153 /*
154 * The SPI core always reports a MODALIAS uevent of the form "spi:<dev>", even
155 * if the device was registered via OF. This means that the module will not be
156 * auto loaded, unless it contains an alias that matches the MODALIAS reported.
157 *
158 * To workaround this issue, add a SPI device ID table. Even when this should
159 * not be needed for this driver to match the registered SPI devices.
160 */
> 161 static const struct spi_device_id ssd130x_spi_table[] = {
162 { "sh1106", SH1106_ID },
163 { "ssd1305", SSD1305_ID },
164 { "ssd1306", SSD1306_ID },
165 { "ssd1307", SSD1307_ID },
166 { "ssd1309", SSD1309_ID },
167 { /* sentinel */ }
168 };
169 MODULE_DEVICE_TABLE(spi, ssd130x_spi_table);
170
--
0-DAY CI Kernel Test Service
https://01.org/lkp
next prev parent reply other threads:[~2022-04-12 8:17 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-11 21:12 [PATCH v2 0/5] drm/solomon: Add SSD130x OLED displays SPI support Javier Martinez Canillas
2022-04-11 21:12 ` Javier Martinez Canillas
2022-04-11 21:12 ` [PATCH v2 1/5] dt-bindings: display: ssd1307fb: Deprecate "-i2c" compatible strings Javier Martinez Canillas
2022-04-11 21:12 ` Javier Martinez Canillas
2022-04-12 7:13 ` Geert Uytterhoeven
2022-04-12 7:13 ` Geert Uytterhoeven
2022-04-12 11:28 ` Maxime Ripard
2022-04-12 11:28 ` Maxime Ripard
2022-04-12 12:48 ` Javier Martinez Canillas
2022-04-12 12:48 ` Javier Martinez Canillas
2022-04-12 12:07 ` Chen-Yu Tsai
2022-04-12 12:07 ` Chen-Yu Tsai
2022-04-12 12:49 ` Javier Martinez Canillas
2022-04-12 12:49 ` Javier Martinez Canillas
2022-04-11 21:12 ` [PATCH v2 2/5] dt-bindings: display: ssd1307fb: Extend schema for SPI controllers Javier Martinez Canillas
2022-04-11 21:12 ` Javier Martinez Canillas
2022-04-12 7:16 ` Geert Uytterhoeven
2022-04-12 7:16 ` Geert Uytterhoeven
2022-04-12 8:01 ` Javier Martinez Canillas
2022-04-12 8:01 ` Javier Martinez Canillas
2022-04-12 8:07 ` Geert Uytterhoeven
2022-04-12 8:07 ` Geert Uytterhoeven
2022-04-12 8:12 ` Javier Martinez Canillas
2022-04-12 8:12 ` Javier Martinez Canillas
2022-04-12 18:16 ` Rob Herring
2022-04-12 18:16 ` Rob Herring
2022-04-11 21:12 ` [PATCH v2 3/5] drm/solomon: Add ssd130x new compatible strings and deprecate old ones Javier Martinez Canillas
2022-04-11 21:12 ` Javier Martinez Canillas
2022-04-12 7:19 ` Geert Uytterhoeven
2022-04-12 7:19 ` Geert Uytterhoeven
2022-04-12 8:03 ` Javier Martinez Canillas
2022-04-12 8:03 ` Javier Martinez Canillas
2022-04-11 21:12 ` [PATCH v2 4/5] drm/solomon: Move device info from ssd130x-i2c to the core driver Javier Martinez Canillas
2022-04-11 21:12 ` Javier Martinez Canillas
2022-04-12 7:23 ` Geert Uytterhoeven
2022-04-12 7:23 ` Geert Uytterhoeven
2022-04-12 8:07 ` Javier Martinez Canillas
2022-04-12 8:07 ` Javier Martinez Canillas
2022-04-12 11:21 ` Andy Shevchenko
2022-04-12 11:21 ` Andy Shevchenko
2022-04-12 11:22 ` Andy Shevchenko
2022-04-12 11:22 ` Andy Shevchenko
2022-04-12 12:47 ` Javier Martinez Canillas
2022-04-12 12:45 ` Javier Martinez Canillas
2022-04-12 12:45 ` Javier Martinez Canillas
2022-04-12 7:25 ` kernel test robot
2022-04-12 7:25 ` kernel test robot
2022-04-11 21:12 ` [PATCH v2 5/5] drm/solomon: Add SSD130x OLED displays SPI support Javier Martinez Canillas
2022-04-11 21:12 ` Javier Martinez Canillas
2022-04-12 7:31 ` Geert Uytterhoeven
2022-04-12 7:31 ` Geert Uytterhoeven
2022-04-12 8:07 ` Javier Martinez Canillas
2022-04-12 8:07 ` Javier Martinez Canillas
2022-04-12 8:17 ` kernel test robot [this message]
2022-04-12 8:17 ` kernel test robot
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=202204121654.38UTab7Q-lkp@intel.com \
--to=lkp@intel.com \
--cc=airlied@linux.ie \
--cc=andriy.shevchenko@linux.intel.com \
--cc=broonie@kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=geert@linux-m68k.org \
--cc=javierm@redhat.com \
--cc=kbuild-all@lists.01.org \
--cc=linux-kernel@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=maxime@cerno.tech \
--cc=narmstrong@baylibre.com \
--cc=wens@kernel.org \
--cc=yuehaibing@huawei.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 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.