Hi,

[auto build test ERROR on battery/master]
[also build test ERROR on v4.7 next-20160729]
[if your patch is applied to the wrong git tree, please drop us a note to help 
improve the system]

url:    
https://github.com/0day-ci/linux/commits/Benjamin-Tissoires/Add-support-for-Microsoft-Surface-3-power/20160729-235348
base:   git://git.infradead.org/battery-2.6.git master
config: openrisc-allyesconfig (attached as .config)
compiler: or32-linux-gcc (GCC) 4.5.1-or32-1.0rc1
reproduce:
        wget 
https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross
 -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=openrisc 

All errors (new ones prefixed by >>):

   drivers/power/surface3_power.c:52:52: error: expected ')' before 'bool'
   drivers/power/surface3_power.c:54:4: error: expected ')' before string 
constant
   drivers/power/surface3_power.c: In function 'mshw0011_notify':
   drivers/power/surface3_power.c:199:2: error: implicit declaration of 
function 'acpi_bus_get_device'
   drivers/power/surface3_power.c:202:2: error: implicit declaration of 
function 'acpi_evaluate_dsm_typed'
   drivers/power/surface3_power.c:202:6: warning: assignment makes pointer from 
integer without a cast
   drivers/power/surface3_power.c: In function 'mshw0011_space_handler':
   drivers/power/surface3_power.c:441:23: error: 
'ACPI_GSB_ACCESS_ATTRIB_RAW_PROCESS' undeclared (first use in this function)
   drivers/power/surface3_power.c:441:23: note: each undeclared identifier is 
reported only once for each function it appears in
   drivers/power/surface3_power.c: In function 'mshw0011_install_space_handler':
   drivers/power/surface3_power.c:511:2: error: implicit declaration of 
function 'acpi_bus_attach_private_data'
   drivers/power/surface3_power.c:524:3: error: implicit declaration of 
function 'acpi_bus_detach_private_data'
   drivers/power/surface3_power.c:529:2: error: implicit declaration of 
function 'acpi_walk_dep_device_list'
   drivers/power/surface3_power.c: In function 'mshw0011_remove_space_handler':
   drivers/power/surface3_power.c:548:2: error: implicit declaration of 
function 'acpi_bus_get_private_data'
   drivers/power/surface3_power.c: In function 'mshw0011_i2c_resource_lookup':
   drivers/power/surface3_power.c:582:2: error: implicit declaration of 
function 'acpi_dev_get_resources'
   drivers/power/surface3_power.c:586:2: error: implicit declaration of 
function 'acpi_dev_free_resource_list'
   drivers/power/surface3_power.c:571:21: warning: unused variable 'client'
   drivers/power/surface3_power.c: At top level:
   drivers/power/surface3_power.c:701:1: warning: data definition has no type 
or storage class
   drivers/power/surface3_power.c:701:1: error: type defaults to 'int' in 
declaration of 'MODULE_DEVICE_TABLE'
   drivers/power/surface3_power.c:701:1: warning: parameter names (without 
types) in function declaration
   drivers/power/surface3_power.c:720:1: warning: data definition has no type 
or storage class
   drivers/power/surface3_power.c:720:1: error: type defaults to 'int' in 
declaration of 'module_init'
   drivers/power/surface3_power.c:720:1: warning: parameter names (without 
types) in function declaration
   drivers/power/surface3_power.c:720:1: warning: data definition has no type 
or storage class
   drivers/power/surface3_power.c:720:1: error: type defaults to 'int' in 
declaration of 'module_exit'
   drivers/power/surface3_power.c:720:1: warning: parameter names (without 
types) in function declaration
   drivers/power/surface3_power.c:722:15: error: expected declaration 
specifiers or '...' before string constant
   drivers/power/surface3_power.c:722:1: warning: data definition has no type 
or storage class
>> drivers/power/surface3_power.c:722:1: error: type defaults to 'int' in 
>> declaration of 'MODULE_AUTHOR'
>> drivers/power/surface3_power.c:722:15: error: function declaration isn't a 
>> prototype
   drivers/power/surface3_power.c:723:20: error: expected declaration 
specifiers or '...' before string constant
   drivers/power/surface3_power.c:723:1: warning: data definition has no type 
or storage class
>> drivers/power/surface3_power.c:723:1: error: type defaults to 'int' in 
>> declaration of 'MODULE_DESCRIPTION'
   drivers/power/surface3_power.c:723:20: error: function declaration isn't a 
prototype
   drivers/power/surface3_power.c:724:16: error: expected declaration 
specifiers or '...' before string constant
   drivers/power/surface3_power.c:724:1: warning: data definition has no type 
or storage class
>> drivers/power/surface3_power.c:724:1: error: type defaults to 'int' in 
>> declaration of 'MODULE_LICENSE'
   drivers/power/surface3_power.c:724:16: error: function declaration isn't a 
prototype
   drivers/power/surface3_power.c:720:1: warning: 'mshw0011_driver_init' 
defined but not used

vim +722 drivers/power/surface3_power.c

   695  }
   696  
   697  static const struct i2c_device_id mshw0011_id[] = {
   698          { "MSHW0011:00", 0 },
   699          { }
   700  };
 > 701  MODULE_DEVICE_TABLE(i2c, mshw0011_id);
   702  
   703  #ifdef CONFIG_ACPI
   704  static const struct acpi_device_id mshw0011_acpi_match[] = {
   705          { "MSHW0011", 0 },
   706          { }
   707  };
   708  MODULE_DEVICE_TABLE(acpi, mshw0011_acpi_match);
   709  #endif
   710  
   711  static struct i2c_driver mshw0011_driver = {
   712          .probe = mshw0011_probe,
   713          .remove = mshw0011_remove,
   714          .id_table = mshw0011_id,
   715          .driver = {
   716                  .name = "mshw0011",
   717                  .acpi_match_table = ACPI_PTR(mshw0011_acpi_match),
   718          },
   719  };
 > 720  module_i2c_driver(mshw0011_driver);
   721  
 > 722  MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoi...@gmail.com>");
 > 723  MODULE_DESCRIPTION("mshw0011 driver");
 > 724  MODULE_LICENSE("GPL v2");

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

Attachment: .config.gz
Description: Binary data

Reply via email to