All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Daniel Baluta <daniel.baluta@intel.com>
Cc: kbuild-all@01.org, jic23@kernel.org, daniel.baluta@intel.com,
	knaack.h@gmx.de, lars@metafoo.de, pmeerw@pmeerw.net,
	linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org
Subject: Re: [PATCH] iio: imu: Add initial support for Bosch BMI160
Date: Fri, 1 Apr 2016 22:10:34 +0800	[thread overview]
Message-ID: <201604012259.NE9WEMgn%fengguang.wu@intel.com> (raw)
In-Reply-To: <1459513870-3852-1-git-send-email-daniel.baluta@intel.com>

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

Hi Daniel,

[auto build test ERROR on iio/togreg]
[also build test ERROR on v4.6-rc1 next-20160401]
[if your patch is applied to the wrong git tree, please drop us a note to help improving the system]

url:    https://github.com/0day-ci/linux/commits/Daniel-Baluta/iio-imu-Add-initial-support-for-Bosch-BMI160/20160401-203058
base:   https://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git togreg
config: sparc-allmodconfig (attached as .config)
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=sparc 

All error/warnings (new ones prefixed by >>):

>> drivers/iio/imu/bmi160/bmi160_i2c.c:57:1: warning: data definition has no type or storage class
    MODULE_DEVICE_TABLE(i2c, bmi160_i2c_id);
    ^
>> drivers/iio/imu/bmi160/bmi160_i2c.c:57:1: error: type defaults to 'int' in declaration of 'MODULE_DEVICE_TABLE' [-Werror=implicit-int]
>> drivers/iio/imu/bmi160/bmi160_i2c.c:57:1: warning: parameter names (without types) in function declaration
   drivers/iio/imu/bmi160/bmi160_i2c.c:63:1: warning: data definition has no type or storage class
    MODULE_DEVICE_TABLE(acpi, bmi160_acpi_match);
    ^
   drivers/iio/imu/bmi160/bmi160_i2c.c:63:1: error: type defaults to 'int' in declaration of 'MODULE_DEVICE_TABLE' [-Werror=implicit-int]
   drivers/iio/imu/bmi160/bmi160_i2c.c:63:1: warning: parameter names (without types) in function declaration
   In file included from include/linux/i2c.h:30:0,
                    from drivers/iio/imu/bmi160/bmi160_i2c.c:14:
   include/linux/device.h:1332:1: warning: data definition has no type or storage class
    module_init(__driver##_init); \
    ^
>> include/linux/i2c.h:666:2: note: in expansion of macro 'module_driver'
     module_driver(__i2c_driver, i2c_add_driver, \
     ^
>> drivers/iio/imu/bmi160/bmi160_i2c.c:75:1: note: in expansion of macro 'module_i2c_driver'
    module_i2c_driver(bmi160_i2c_driver);
    ^
>> include/linux/device.h:1332:1: error: type defaults to 'int' in declaration of 'module_init' [-Werror=implicit-int]
    module_init(__driver##_init); \
    ^
>> include/linux/i2c.h:666:2: note: in expansion of macro 'module_driver'
     module_driver(__i2c_driver, i2c_add_driver, \
     ^
>> drivers/iio/imu/bmi160/bmi160_i2c.c:75:1: note: in expansion of macro 'module_i2c_driver'
    module_i2c_driver(bmi160_i2c_driver);
    ^
   drivers/iio/imu/bmi160/bmi160_i2c.c:75:1: warning: parameter names (without types) in function declaration
   In file included from include/linux/i2c.h:30:0,
                    from drivers/iio/imu/bmi160/bmi160_i2c.c:14:
   include/linux/device.h:1337:1: warning: data definition has no type or storage class
    module_exit(__driver##_exit);
    ^
>> include/linux/i2c.h:666:2: note: in expansion of macro 'module_driver'
     module_driver(__i2c_driver, i2c_add_driver, \
     ^
>> drivers/iio/imu/bmi160/bmi160_i2c.c:75:1: note: in expansion of macro 'module_i2c_driver'
    module_i2c_driver(bmi160_i2c_driver);
    ^
>> include/linux/device.h:1337:1: error: type defaults to 'int' in declaration of 'module_exit' [-Werror=implicit-int]
    module_exit(__driver##_exit);
    ^
>> include/linux/i2c.h:666:2: note: in expansion of macro 'module_driver'
     module_driver(__i2c_driver, i2c_add_driver, \
     ^
>> drivers/iio/imu/bmi160/bmi160_i2c.c:75:1: note: in expansion of macro 'module_i2c_driver'
    module_i2c_driver(bmi160_i2c_driver);
    ^
   drivers/iio/imu/bmi160/bmi160_i2c.c:75:1: warning: parameter names (without types) in function declaration
>> drivers/iio/imu/bmi160/bmi160_i2c.c:77:15: error: expected declaration specifiers or '...' before string constant
    MODULE_AUTHOR("Daniel Baluta <daniel.baluta@intel.com>");
                  ^
   drivers/iio/imu/bmi160/bmi160_i2c.c:78:20: error: expected declaration specifiers or '...' before string constant
    MODULE_DESCRIPTION("BMI160 I2C driver");
                       ^
   drivers/iio/imu/bmi160/bmi160_i2c.c:79:16: error: expected declaration specifiers or '...' before string constant
    MODULE_LICENSE("GPL v2");
                   ^
   In file included from include/linux/i2c.h:30:0,
                    from drivers/iio/imu/bmi160/bmi160_i2c.c:14:
   drivers/iio/imu/bmi160/bmi160_i2c.c:75:19: warning: 'bmi160_i2c_driver_init' defined but not used [-Wunused-function]
    module_i2c_driver(bmi160_i2c_driver);
                      ^
   include/linux/device.h:1328:19: note: in definition of macro 'module_driver'
    static int __init __driver##_init(void) \
                      ^
>> drivers/iio/imu/bmi160/bmi160_i2c.c:75:1: note: in expansion of macro 'module_i2c_driver'
    module_i2c_driver(bmi160_i2c_driver);
    ^
   drivers/iio/imu/bmi160/bmi160_i2c.c:75:19: warning: 'bmi160_i2c_driver_exit' defined but not used [-Wunused-function]
    module_i2c_driver(bmi160_i2c_driver);
                      ^
   include/linux/device.h:1333:20: note: in definition of macro 'module_driver'
    static void __exit __driver##_exit(void) \
                       ^
>> drivers/iio/imu/bmi160/bmi160_i2c.c:75:1: note: in expansion of macro 'module_i2c_driver'
    module_i2c_driver(bmi160_i2c_driver);
    ^
   cc1: some warnings being treated as errors
--
>> drivers/iio/imu/bmi160/bmi160_spi.c:50:1: warning: data definition has no type or storage class
    MODULE_DEVICE_TABLE(spi, bmi160_spi_id);
    ^
>> drivers/iio/imu/bmi160/bmi160_spi.c:50:1: error: type defaults to 'int' in declaration of 'MODULE_DEVICE_TABLE' [-Werror=implicit-int]
>> drivers/iio/imu/bmi160/bmi160_spi.c:50:1: warning: parameter names (without types) in function declaration
   drivers/iio/imu/bmi160/bmi160_spi.c:56:1: warning: data definition has no type or storage class
    MODULE_DEVICE_TABLE(acpi, bmi160_acpi_match);
    ^
   drivers/iio/imu/bmi160/bmi160_spi.c:56:1: error: type defaults to 'int' in declaration of 'MODULE_DEVICE_TABLE' [-Werror=implicit-int]
   drivers/iio/imu/bmi160/bmi160_spi.c:56:1: warning: parameter names (without types) in function declaration
   In file included from include/linux/spi/spi.h:18:0,
                    from drivers/iio/imu/bmi160/bmi160_spi.c:11:
   include/linux/device.h:1332:1: warning: data definition has no type or storage class
    module_init(__driver##_init); \
    ^
>> include/linux/spi/spi.h:283:2: note: in expansion of macro 'module_driver'
     module_driver(__spi_driver, spi_register_driver, \
     ^
>> drivers/iio/imu/bmi160/bmi160_spi.c:67:1: note: in expansion of macro 'module_spi_driver'
    module_spi_driver(bmi160_spi_driver);
    ^
>> include/linux/device.h:1332:1: error: type defaults to 'int' in declaration of 'module_init' [-Werror=implicit-int]
    module_init(__driver##_init); \
    ^
>> include/linux/spi/spi.h:283:2: note: in expansion of macro 'module_driver'
     module_driver(__spi_driver, spi_register_driver, \
     ^
>> drivers/iio/imu/bmi160/bmi160_spi.c:67:1: note: in expansion of macro 'module_spi_driver'
    module_spi_driver(bmi160_spi_driver);
    ^
   drivers/iio/imu/bmi160/bmi160_spi.c:67:1: warning: parameter names (without types) in function declaration
   In file included from include/linux/spi/spi.h:18:0,
                    from drivers/iio/imu/bmi160/bmi160_spi.c:11:
   include/linux/device.h:1337:1: warning: data definition has no type or storage class
    module_exit(__driver##_exit);
    ^
>> include/linux/spi/spi.h:283:2: note: in expansion of macro 'module_driver'
     module_driver(__spi_driver, spi_register_driver, \
     ^
>> drivers/iio/imu/bmi160/bmi160_spi.c:67:1: note: in expansion of macro 'module_spi_driver'
    module_spi_driver(bmi160_spi_driver);
    ^
>> include/linux/device.h:1337:1: error: type defaults to 'int' in declaration of 'module_exit' [-Werror=implicit-int]
    module_exit(__driver##_exit);
    ^
>> include/linux/spi/spi.h:283:2: note: in expansion of macro 'module_driver'
     module_driver(__spi_driver, spi_register_driver, \
     ^
>> drivers/iio/imu/bmi160/bmi160_spi.c:67:1: note: in expansion of macro 'module_spi_driver'
    module_spi_driver(bmi160_spi_driver);
    ^
   drivers/iio/imu/bmi160/bmi160_spi.c:67:1: warning: parameter names (without types) in function declaration
>> drivers/iio/imu/bmi160/bmi160_spi.c:69:15: error: expected declaration specifiers or '...' before string constant
    MODULE_AUTHOR("Daniel Baluta <daniel.baluta@intel.com");
                  ^
   drivers/iio/imu/bmi160/bmi160_spi.c:70:20: error: expected declaration specifiers or '...' before string constant
    MODULE_DESCRIPTION("Bosch BMI160 SPI driver");
                       ^
   drivers/iio/imu/bmi160/bmi160_spi.c:71:16: error: expected declaration specifiers or '...' before string constant
    MODULE_LICENSE("GPL v2");
                   ^
   In file included from include/linux/spi/spi.h:18:0,
                    from drivers/iio/imu/bmi160/bmi160_spi.c:11:
   drivers/iio/imu/bmi160/bmi160_spi.c:67:19: warning: 'bmi160_spi_driver_init' defined but not used [-Wunused-function]
    module_spi_driver(bmi160_spi_driver);
                      ^
   include/linux/device.h:1328:19: note: in definition of macro 'module_driver'
    static int __init __driver##_init(void) \
                      ^
>> drivers/iio/imu/bmi160/bmi160_spi.c:67:1: note: in expansion of macro 'module_spi_driver'
    module_spi_driver(bmi160_spi_driver);
    ^
   drivers/iio/imu/bmi160/bmi160_spi.c:67:19: warning: 'bmi160_spi_driver_exit' defined but not used [-Wunused-function]
    module_spi_driver(bmi160_spi_driver);
                      ^
   include/linux/device.h:1333:20: note: in definition of macro 'module_driver'
    static void __exit __driver##_exit(void) \
                       ^
>> drivers/iio/imu/bmi160/bmi160_spi.c:67:1: note: in expansion of macro 'module_spi_driver'
    module_spi_driver(bmi160_spi_driver);
    ^
   cc1: some warnings being treated as errors

vim +57 drivers/iio/imu/bmi160/bmi160_i2c.c

    51	}
    52	
    53	static const struct i2c_device_id bmi160_i2c_id[] = {
    54		{"bmi160", 0},
    55		{}
    56	};
  > 57	MODULE_DEVICE_TABLE(i2c, bmi160_i2c_id);
    58	
    59	static const struct acpi_device_id bmi160_acpi_match[] = {
    60		{"BMI0160", 0},
    61		{ },
    62	};
  > 63	MODULE_DEVICE_TABLE(acpi, bmi160_acpi_match);
    64	
    65	static struct i2c_driver bmi160_i2c_driver = {
    66		.driver = {
    67			.name			= BMI160_I2C_DRV_NAME,
    68			.acpi_match_table	= ACPI_PTR(bmi160_acpi_match),
    69		},
    70		.probe		= bmi160_i2c_probe,
    71		.remove		= bmi160_i2c_remove,
    72		.id_table	= bmi160_i2c_id,
    73	};
    74	
  > 75	module_i2c_driver(bmi160_i2c_driver);
    76	
  > 77	MODULE_AUTHOR("Daniel Baluta <daniel.baluta@intel.com>");
    78	MODULE_DESCRIPTION("BMI160 I2C driver");
    79	MODULE_LICENSE("GPL v2");

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

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 44915 bytes --]

  reply	other threads:[~2016-04-01 14:11 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-01 12:31 [PATCH] iio: imu: Add initial support for Bosch BMI160 Daniel Baluta
2016-04-01 14:10 ` kbuild test robot [this message]
2016-04-01 14:28 ` Peter Meerwald-Stadler
2016-04-05  8:17   ` Daniel Baluta
2016-04-01 18:03 ` kbuild test robot
2016-04-01 19:53 ` kbuild test robot
2016-04-03  8:53 ` Jonathan Cameron
2016-04-05  8:28   ` Daniel Baluta

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=201604012259.NE9WEMgn%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=daniel.baluta@intel.com \
    --cc=jic23@kernel.org \
    --cc=kbuild-all@01.org \
    --cc=knaack.h@gmx.de \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pmeerw@pmeerw.net \
    /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.