lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:   Sat, 24 Sep 2022 22:52:16 +0800
From:   kernel test robot <lkp@...el.com>
To:     Bjorn Andersson <bjorn.andersson@...aro.org>
Cc:     kbuild-all@...ts.01.org, linux-kernel@...r.kernel.org,
        Steev Klimaszewski <steev@...i.org>
Subject: [steev:c630-6.0.0-rc6 56/156]
 drivers/power/supply/yoga-c630-ec.c:224:38: error: implicit declaration of
 function 'FIELD_GET'; did you mean 'FOLL_GET'?

tree:   https://github.com/steev/linux c630-6.0.0-rc6
head:   9a45392dd66cc0ecc92257da15460d26f1b8a337
commit: a9f55bdce15d8608622ab8466583bd92db847898 [56/156] power: supply: Add Lenovo Yoga C630 EC driver
config: s390-allyesconfig
compiler: s390-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/steev/linux/commit/a9f55bdce15d8608622ab8466583bd92db847898
        git remote add steev https://github.com/steev/linux
        git fetch --no-tags steev c630-6.0.0-rc6
        git checkout a9f55bdce15d8608622ab8466583bd92db847898
        # 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=s390 SHELL=/bin/bash

If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@...el.com>

All errors (new ones prefixed by >>):

   drivers/power/supply/yoga-c630-ec.c: In function 'yoga_c630_ec_update_adapter_status':
>> drivers/power/supply/yoga-c630-ec.c:224:38: error: implicit declaration of function 'FIELD_GET'; did you mean 'FOLL_GET'? [-Werror=implicit-function-declaration]
     224 |                 ec->adapter_online = FIELD_GET(LENOVO_EC_ADPT_PRESENT, val);
         |                                      ^~~~~~~~~
         |                                      FOLL_GET
   cc1: some warnings being treated as errors


vim +224 drivers/power/supply/yoga-c630-ec.c

   215	
   216	static int yoga_c630_ec_update_adapter_status(struct yoga_c630_ec *ec)
   217	{
   218		int val;
   219	
   220		mutex_lock(&ec->lock);
   221	
   222		val = yoga_c630_ec_read8(ec, LENOVO_EC_ADPT_STATUS);
   223		if (val > 0)
 > 224			ec->adapter_online = FIELD_GET(LENOVO_EC_ADPT_PRESENT, val);
   225	
   226		mutex_unlock(&ec->lock);
   227	
   228		return val;
   229	}
   230	

-- 
0-DAY CI Kernel Test Service
https://01.org/lkp

View attachment "config" of type "text/plain" (305776 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ