From: kernel test robot <lkp@intel.com>
To: Yunhui Cui <cuiyunhui@bytedance.com>,
rafael@kernel.org, lenb@kernel.org, jdelvare@suse.com,
cujomalainey@chromium.org, yc.hung@mediatek.com,
angelogioacchino.delregno@collabora.com,
allen-kh.cheng@mediatek.com,
pierre-louis.bossart@linux.intel.com, tinghan.shen@mediatek.com,
ardb@kernel.org, linux-kernel@vger.kernel.org,
linux-acpi@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH] firmware: added a firmware information passing method FFI
Date: Wed, 26 Apr 2023 17:21:55 +0800 [thread overview]
Message-ID: <202304261756.84GsEW3V-lkp@intel.com> (raw)
In-Reply-To: <20230426034001.16-1-cuiyunhui@bytedance.com>
Hi Yunhui,
kernel test robot noticed the following build warnings:
[auto build test WARNING on rafael-pm/linux-next]
[also build test WARNING on linus/master jdelvare-staging/dmi-for-next v6.3 next-20230425]
[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/Yunhui-Cui/firmware-added-a-firmware-information-passing-method-FFI/20230426-114131
base: https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git linux-next
patch link: https://lore.kernel.org/r/20230426034001.16-1-cuiyunhui%40bytedance.com
patch subject: [PATCH] firmware: added a firmware information passing method FFI
config: m68k-allyesconfig (https://download.01.org/0day-ci/archive/20230426/202304261756.84GsEW3V-lkp@intel.com/config)
compiler: m68k-linux-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/7d1fe633611738698520294d2a598575a765cfbf
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Yunhui-Cui/firmware-added-a-firmware-information-passing-method-FFI/20230426-114131
git checkout 7d1fe633611738698520294d2a598575a765cfbf
# 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=m68k olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=m68k SHELL=/bin/bash drivers/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202304261756.84GsEW3V-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/firmware/ffi.c:18:13: warning: no previous prototype for 'of_fdt_fwtbl' [-Wmissing-prototypes]
18 | void __init of_fdt_fwtbl(void)
| ^~~~~~~~~~~~
>> drivers/firmware/ffi.c:53:13: warning: no previous prototype for 'fdt_fwtbl_init' [-Wmissing-prototypes]
53 | void __init fdt_fwtbl_init(void)
| ^~~~~~~~~~~~~~
vim +/of_fdt_fwtbl +18 drivers/firmware/ffi.c
17
> 18 void __init of_fdt_fwtbl(void)
19 {
20 int cfgtbl, len;
21 fdt64_t *prop;
22
23 cfgtbl = fdt_path_offset(initial_boot_params, "/cfgtables");
24 if (cfgtbl < 0) {
25 pr_info("cfgtables not found.\n");
26 return;
27 }
28 prop = fdt_getprop_w(initial_boot_params, cfgtbl, "smbios_phy_ptr", &len);
29 if (!prop || len != sizeof(u64))
30 pr_info("smbios_phy_ptr not found.\n");
31 else
32 fdt_fwtbl.smbios = fdt64_to_cpu(*prop);
33
34 prop = fdt_getprop_w(initial_boot_params, cfgtbl, "smbios3_phy_ptr", &len);
35 if (!prop || len != sizeof(u64))
36 pr_info("smbios3_phy_ptr not found.\n");
37 else
38 fdt_fwtbl.smbios3 = fdt64_to_cpu(*prop);
39
40 prop = fdt_getprop_w(initial_boot_params, cfgtbl, "acpi_phy_ptr", &len);
41 if (!prop || len != sizeof(u64))
42 pr_info("acpi_phy_ptr not found.\n");
43 else
44 fdt_fwtbl.acpi = fdt64_to_cpu(*prop);
45
46 prop = fdt_getprop_w(initial_boot_params, cfgtbl, "acpi20_phy_ptr", &len);
47 if (!prop || len != sizeof(u64))
48 pr_info("acpi20_phy_ptr not found.\n");
49 else
50 fdt_fwtbl.acpi20 = fdt64_to_cpu(*prop);
51 }
52
> 53 void __init fdt_fwtbl_init(void)
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
prev parent reply other threads:[~2023-04-26 9:24 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-26 3:40 [PATCH] firmware: added a firmware information passing method FFI Yunhui Cui
2023-04-26 7:08 ` Ard Biesheuvel
2023-04-26 9:34 ` [External] " 运辉崔
2023-04-26 10:07 ` Mark Rutland
2023-04-27 3:37 ` 运辉崔
[not found] ` <CAP6exY+ydbzh1EkWTFejzwaW+PA-ySVO2Qj+CVJ1XbSMce2S9Q@mail.gmail.com>
2023-04-27 11:24 ` Mark Rutland
2023-04-27 12:52 ` Ard Biesheuvel
2023-04-28 3:17 ` 运辉崔
[not found] ` <CAP6exYK9ytcgqcy2gFyOGvbxd7DPGQNs=m7nNgnfunnh8et9aQ@mail.gmail.com>
2023-04-28 18:03 ` Ard Biesheuvel
2023-05-04 12:05 ` 运辉崔
2023-05-04 13:44 ` Ard Biesheuvel
[not found] ` <CAP6exY+tqAU0j1TVEMTzTb18M6_mPH5bWWiAS=94gyDGTY3hyQ@mail.gmail.com>
2023-06-21 8:04 ` 运辉崔
2023-06-24 12:52 ` Ard Biesheuvel
2023-06-25 7:33 ` 运辉崔
2023-06-25 7:42 ` Ard Biesheuvel
2023-06-25 11:54 ` 运辉崔
2023-06-25 13:12 ` Ard Biesheuvel
[not found] ` <CAP6exYJRE8iM63SX3hQP9_5aKYcnN5x0KOAtZOgeEWU5bwLEBA@mail.gmail.com>
2023-06-26 2:35 ` 运辉崔
2023-06-26 6:42 ` Ard Biesheuvel
2023-06-26 8:05 ` 运辉崔
2023-06-26 8:22 ` Ard Biesheuvel
2023-06-26 10:19 ` 运辉崔
2023-06-27 7:09 ` 运辉崔
2023-06-27 9:50 ` Ard Biesheuvel
2023-06-27 12:39 ` 运辉崔
2023-04-26 9:21 ` kernel test robot [this message]
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=202304261756.84GsEW3V-lkp@intel.com \
--to=lkp@intel.com \
--cc=allen-kh.cheng@mediatek.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=ardb@kernel.org \
--cc=cuiyunhui@bytedance.com \
--cc=cujomalainey@chromium.org \
--cc=jdelvare@suse.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=pierre-louis.bossart@linux.intel.com \
--cc=rafael@kernel.org \
--cc=tinghan.shen@mediatek.com \
--cc=yc.hung@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