linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Phillip Potter <phil@philpotter.co.uk>, gregkh@linuxfoundation.org
Cc: clang-built-linux@googlegroups.com, kbuild-all@lists.01.org,
	Larry.Finger@lwfinger.net, dan.carpenter@oracle.com,
	linux-kernel@vger.kernel.org, linux-staging@lists.linux.dev,
	fabioaiuto83@gmail.com
Subject: Re: [PATCH v3 7/7] staging: r8188eu: attach newly imported driver to build system
Date: Sun, 25 Jul 2021 13:37:42 +0800	[thread overview]
Message-ID: <202107251300.8VuHwZYj-lkp@intel.com> (raw)
In-Reply-To: <20210724001055.1613840-8-phil@philpotter.co.uk>

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

Hi Phillip,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on staging/staging-testing]

url:    https://github.com/0day-ci/linux/commits/Phillip-Potter/staging-rtl8188eu-replace-driver-with-better-version/20210724-081451
base:   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git f133717efc6f28052667daf682e99ffd4b3d7588
config: x86_64-randconfig-a005-20210725 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 3f2c1e99e44d028d5e9dd685f3c568f2661f2f68)
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 x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        # https://github.com/0day-ci/linux/commit/f6660780a56e74a9bc575b0ec28b2d64910939a3
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Phillip-Potter/staging-rtl8188eu-replace-driver-with-better-version/20210724-081451
        git checkout f6660780a56e74a9bc575b0ec28b2d64910939a3
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross O=build_dir ARCH=x86_64 SHELL=/bin/bash drivers/staging/

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

All errors (new ones prefixed by >>):

>> drivers/staging/r8188eu/core/rtw_ioctl_set.c:22:10: fatal error: 'osdep_service.h' file not found
   #include <osdep_service.h>
            ^~~~~~~~~~~~~~~~~
   1 error generated.
--
>> drivers/staging/r8188eu/core/rtw_iol.c:21:9: fatal error: 'rtw_iol.h' file not found
   #include<rtw_iol.h>
           ^~~~~~~~~~~
   1 error generated.
--
>> drivers/staging/r8188eu/core/rtw_led.c:21:10: fatal error: 'drv_types.h' file not found
   #include <drv_types.h>
            ^~~~~~~~~~~~~
   1 error generated.
--
>> drivers/staging/r8188eu/core/rtw_mlme.c:23:10: fatal error: 'osdep_service.h' file not found
   #include <osdep_service.h>
            ^~~~~~~~~~~~~~~~~
   1 error generated.
--
>> drivers/staging/r8188eu/core/rtw_mlme_ext.c:22:10: fatal error: 'osdep_service.h' file not found
   #include <osdep_service.h>
            ^~~~~~~~~~~~~~~~~
   1 error generated.
--
>> drivers/staging/r8188eu/core/rtw_mp.c:22:10: fatal error: 'drv_types.h' file not found
   #include <drv_types.h>
            ^~~~~~~~~~~~~
   1 error generated.
--
>> drivers/staging/r8188eu/core/rtw_mp_ioctl.c:22:10: fatal error: 'osdep_service.h' file not found
   #include <osdep_service.h>
            ^~~~~~~~~~~~~~~~~
   1 error generated.
--
>> drivers/staging/r8188eu/core/rtw_pwrctrl.c:22:10: fatal error: 'osdep_service.h' file not found
   #include <osdep_service.h>
            ^~~~~~~~~~~~~~~~~
   1 error generated.
--
>> drivers/staging/r8188eu/core/rtw_p2p.c:22:10: fatal error: 'drv_types.h' file not found
   #include <drv_types.h>
            ^~~~~~~~~~~~~
   1 error generated.
--
>> drivers/staging/r8188eu/core/rtw_recv.c:22:10: fatal error: 'osdep_service.h' file not found
   #include <osdep_service.h>
            ^~~~~~~~~~~~~~~~~
   1 error generated.
--
>> drivers/staging/r8188eu/core/rtw_rf.c:22:10: fatal error: 'osdep_service.h' file not found
   #include <osdep_service.h>
            ^~~~~~~~~~~~~~~~~
   1 error generated.
..


vim +22 drivers/staging/r8188eu/core/rtw_ioctl_set.c

25dd472d5a6a24 Phillip Potter 2021-07-24  21  
25dd472d5a6a24 Phillip Potter 2021-07-24 @22  #include <osdep_service.h>
25dd472d5a6a24 Phillip Potter 2021-07-24  23  #include <drv_types.h>
25dd472d5a6a24 Phillip Potter 2021-07-24  24  #include <rtw_ioctl_set.h>
25dd472d5a6a24 Phillip Potter 2021-07-24  25  #include <hal_intf.h>
25dd472d5a6a24 Phillip Potter 2021-07-24  26  

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

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

  parent reply	other threads:[~2021-07-25  5:38 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-24  0:10 [PATCH v3 0/7] staging: rtl8188eu: replace driver with better version Phillip Potter
2021-07-24  0:10 ` [PATCH v3 1/7] staging: rtl8188eu: remove existing staging driver Phillip Potter
2021-07-24  0:10 ` [PATCH v3 2/7] staging: r8188eu: introduce new core dir for RTL8188eu driver Phillip Potter
2021-07-24  0:10 ` [PATCH v3 3/7] staging: r8188eu: introduce new hal " Phillip Potter
2021-07-24  0:10 ` [PATCH v3 4/7] staging: r8188eu: introduce new os_dep " Phillip Potter
2021-07-24 19:33   ` kernel test robot
2021-07-24 19:33   ` [RFC PATCH] staging: r8188eu: fix duplicated inclusion kernel test robot
2021-07-24  0:10 ` [PATCH v3 5/7] staging: r8188eu: introduce new include dir for RTL8188eu driver Phillip Potter
2021-07-24  0:10 ` [PATCH v3 6/7] staging: r8188eu: introduce new supporting files " Phillip Potter
2021-07-24  0:10 ` [PATCH v3 7/7] staging: r8188eu: attach newly imported driver to build system Phillip Potter
2021-07-24  5:31   ` kernel test robot
2021-07-25  5:37   ` kernel test robot [this message]
2021-07-27 13:06 ` [PATCH v3 0/7] staging: rtl8188eu: replace driver with better version Greg KH
2021-07-27 13:25   ` Phillip Potter
2021-07-27 13:47     ` Greg KH
2021-07-27 14:13       ` Larry Finger
2021-07-27 14:28         ` Greg KH
2021-07-27 14:34           ` Phillip Potter
2021-07-27 15:46             ` Greg KH

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=202107251300.8VuHwZYj-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=Larry.Finger@lwfinger.net \
    --cc=clang-built-linux@googlegroups.com \
    --cc=dan.carpenter@oracle.com \
    --cc=fabioaiuto83@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-staging@lists.linux.dev \
    --cc=phil@philpotter.co.uk \
    /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;
as well as URLs for NNTP newsgroup(s).