All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [RFC PATCH 2/3] firmware: Add support for PSA FF-A transport for VM partitions
Date: Tue, 02 Jun 2020 15:11:33 +0800	[thread overview]
Message-ID: <202006021513.XkEXYE29%lkp@intel.com> (raw)
In-Reply-To: <20200601094512.50509-3-sudeep.holla@arm.com>

[-- Attachment #1: Type: text/plain, Size: 3325 bytes --]

Hi Sudeep,

[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on next-20200529]
[cannot apply to linus/master v5.7 v5.7-rc7 v5.7-rc6 v5.7]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Sudeep-Holla/firmware-Add-support-for-PSA-FF-A-interface/20200601-174706
base:    e7b08814b16b80a0bf76eeca16317f8c2ed23b8c
config: arm64-randconfig-r032-20200602 (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project 2388a096e7865c043e83ece4e26654bd3d1a20d5)
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 arm64 cross compiling tool for clang build
        # apt-get install binutils-aarch64-linux-gnu
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=arm64 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kbuild test robot <lkp@intel.com>

All warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/firmware/arm_psa_ffa/driver.c:106:1: warning: no previous prototype for function '__arm_psa_ffa_fn_smc' [-Wmissing-prototypes]
__arm_psa_ffa_fn_smc(unsigned long function_id,unsigned long arg0,
^
drivers/firmware/arm_psa_ffa/driver.c:105:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
struct arm_smccc_res
^
static
>> drivers/firmware/arm_psa_ffa/driver.c:120:1: warning: no previous prototype for function '__arm_psa_ffa_fn_hvc' [-Wmissing-prototypes]
__arm_psa_ffa_fn_hvc(unsigned long function_id,unsigned long arg0,
^
drivers/firmware/arm_psa_ffa/driver.c:119:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
struct arm_smccc_res
^
static
2 warnings generated.

vim +/__arm_psa_ffa_fn_smc +106 drivers/firmware/arm_psa_ffa/driver.c

   104	
   105	struct arm_smccc_res
 > 106	__arm_psa_ffa_fn_smc(unsigned long function_id,unsigned long arg0,
   107			     unsigned long arg1, unsigned long arg2,
   108			     unsigned long arg3, unsigned long arg4,
   109			     unsigned long arg5, unsigned long arg6)
   110	{
   111		struct arm_smccc_res res;
   112	
   113		arm_smccc_smc(function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6,
   114			      &res);
   115	
   116		return res;
   117	}
   118	
   119	struct arm_smccc_res
 > 120	__arm_psa_ffa_fn_hvc(unsigned long function_id,unsigned long arg0,
   121			     unsigned long arg1, unsigned long arg2,
   122			     unsigned long arg3, unsigned long arg4,
   123			     unsigned long arg5, unsigned long arg6)
   124	{
   125		struct arm_smccc_res res;
   126	
   127		arm_smccc_hvc(function_id, arg0, arg1, arg2, arg3, arg4, arg5, arg6,
   128			      &res);
   129	
   130		return res;
   131	}
   132	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 41106 bytes --]

  parent reply	other threads:[~2020-06-02  7:11 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-01  9:45 [RFC PATCH 0/3] firmware: Add support for PSA FF-A interface Sudeep Holla
2020-06-01  9:45 ` Sudeep Holla
2020-06-01  9:45 ` [RFC PATCH 1/3] dt-bindings: Add ARM PSA FF binding for non-secure VM partitions Sudeep Holla
2020-06-01  9:45   ` Sudeep Holla
2020-06-09 22:35   ` Rob Herring
2020-06-09 22:35     ` Rob Herring
2020-06-10  7:43     ` Will Deacon
2020-06-10  7:43       ` Will Deacon
2020-06-10 13:56       ` Rob Herring
2020-06-10 13:56         ` Rob Herring
2020-06-11 15:46       ` Achin Gupta
2020-06-11 15:46         ` Achin Gupta
2020-06-11 17:12         ` Will Deacon
2020-06-11 17:12           ` Will Deacon
2020-06-15  9:16           ` Achin Gupta
2020-06-15  9:16             ` Achin Gupta
2020-06-15  9:51             ` Will Deacon
2020-06-15  9:51               ` Will Deacon
2020-06-15 11:42               ` Achin Gupta
2020-06-15 11:42                 ` Achin Gupta
2020-06-15 11:55                 ` Will Deacon
2020-06-15 11:55                   ` Will Deacon
2020-06-15 16:48                   ` Achin Gupta
2020-06-15 16:48                     ` Achin Gupta
2020-06-10  8:32     ` Sudeep Holla
2020-06-10  8:32       ` Sudeep Holla
2020-06-01  9:45 ` [RFC PATCH 2/3] firmware: Add support for PSA FF-A transport for " Sudeep Holla
2020-06-01  9:45   ` Sudeep Holla
2020-06-01 13:46   ` kbuild test robot
2020-06-02  7:11   ` kbuild test robot [this message]
2020-07-09 22:15   ` Arve Hjønnevåg
2020-07-09 22:15     ` Arve Hjønnevåg
2020-06-01  9:45 ` [RFC PATCH 3/3] firmware: Add example PSA FF-A non-secure VM partition Sudeep Holla
2020-06-01  9:45   ` Sudeep Holla
2020-06-01 14:22   ` kbuild test robot
2020-06-04 13:37 ` [RFC PATCH 0/3] firmware: Add support for PSA FF-A interface Will Deacon
2020-06-04 13:37   ` Will Deacon
2020-06-09 17:41   ` Sudeep Holla
2020-06-09 17:41     ` Sudeep Holla
2020-06-10  7:57     ` Will Deacon
2020-06-10  7:57       ` Will Deacon
2020-06-10  8:10       ` Sudeep Holla
2020-06-10  8:10         ` Sudeep Holla
2020-06-15 11:38     ` Jens Wiklander
2020-06-15 11:38       ` Jens Wiklander

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=202006021513.XkEXYE29%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.org \
    /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.