All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Aniroop Mathur <a.mathur@samsung.com>
Cc: kbuild-all@01.org, mike@compulab.co.il, grinberg@compulab.co.il,
	dmitry.torokhov@gmail.com, linux-input@vger.kernel.org,
	linux-kernel@vger.kernel.org, s.samuel@samsung.com,
	r.mahale@samsung.com, aniroop.mathur@gmail.com,
	Aniroop Mathur <a.mathur@samsung.com>
Subject: Re: [PATCH] Input: mouse: synaptics - change msleep to usleep_range for small msecs
Date: Tue, 29 Nov 2016 03:35:29 +0800	[thread overview]
Message-ID: <201611290300.6bgyrZJs%fengguang.wu@intel.com> (raw)
In-Reply-To: <1480354255-2029-1-git-send-email-a.mathur@samsung.com>

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

Hi Aniroop,

[auto build test ERROR on input/next]
[also build test ERROR on v4.9-rc7 next-20161128]
[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/Aniroop-Mathur/Input-mouse-synaptics-change-msleep-to-usleep_range-for-small-msecs/20161129-025754
base:   https://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git next
config: x86_64-acpi-redef (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   drivers/input/mouse/synaptics_i2c.c: In function 'synaptics_i2c_reset_config':
>> drivers/input/mouse/synaptics_i2c.c:314:16: error: 'SOFT_RESET_DELAY_MS' undeclared (first use in this function)
      usleep_range(SOFT_RESET_DELAY_MS, SOFT_RESET_DELAY_MS + 100);
                   ^~~~~~~~~~~~~~~~~~~
   drivers/input/mouse/synaptics_i2c.c:314:16: note: each undeclared identifier is reported only once for each function it appears in

vim +/SOFT_RESET_DELAY_MS +314 drivers/input/mouse/synaptics_i2c.c

   308	
   309		/* Reset the Touchpad */
   310		ret = synaptics_i2c_reg_set(client, DEV_COMMAND_REG, RESET_COMMAND);
   311		if (ret) {
   312			dev_err(&client->dev, "Unable to reset device\n");
   313		} else {
 > 314			usleep_range(SOFT_RESET_DELAY_MS, SOFT_RESET_DELAY_MS + 100);
   315			ret = synaptics_i2c_config(client);
   316			if (ret)
   317				dev_err(&client->dev, "Unable to config device\n");

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

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

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
Cc: kbuild-all@01.org, mike@compulab.co.il, grinberg@compulab.co.il,
	dmitry.torokhov@gmail.com, linux-input@vger.kernel.org,
	linux-kernel@vger.kernel.org, s.samuel@samsung.com,
	r.mahale@samsung.com, aniroop.mathur@gmail.com,
	Aniroop Mathur <a.mathur@samsung.com>
Subject: Re: [PATCH] Input: mouse: synaptics - change msleep to usleep_range for small msecs
Date: Tue, 29 Nov 2016 03:35:29 +0800	[thread overview]
Message-ID: <201611290300.6bgyrZJs%fengguang.wu@intel.com> (raw)
In-Reply-To: <1480354255-2029-1-git-send-email-a.mathur@samsung.com>

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

Hi Aniroop,

[auto build test ERROR on input/next]
[also build test ERROR on v4.9-rc7 next-20161128]
[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/Aniroop-Mathur/Input-mouse-synaptics-change-msleep-to-usleep_range-for-small-msecs/20161129-025754
base:   https://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git next
config: x86_64-acpi-redef (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   drivers/input/mouse/synaptics_i2c.c: In function 'synaptics_i2c_reset_config':
>> drivers/input/mouse/synaptics_i2c.c:314:16: error: 'SOFT_RESET_DELAY_MS' undeclared (first use in this function)
      usleep_range(SOFT_RESET_DELAY_MS, SOFT_RESET_DELAY_MS + 100);
                   ^~~~~~~~~~~~~~~~~~~
   drivers/input/mouse/synaptics_i2c.c:314:16: note: each undeclared identifier is reported only once for each function it appears in

vim +/SOFT_RESET_DELAY_MS +314 drivers/input/mouse/synaptics_i2c.c

   308	
   309		/* Reset the Touchpad */
   310		ret = synaptics_i2c_reg_set(client, DEV_COMMAND_REG, RESET_COMMAND);
   311		if (ret) {
   312			dev_err(&client->dev, "Unable to reset device\n");
   313		} else {
 > 314			usleep_range(SOFT_RESET_DELAY_MS, SOFT_RESET_DELAY_MS + 100);
   315			ret = synaptics_i2c_config(client);
   316			if (ret)
   317				dev_err(&client->dev, "Unable to config device\n");

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

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

  reply	other threads:[~2016-11-28 19:36 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-28 17:30 [PATCH] Input: mouse: synaptics - change msleep to usleep_range for small msecs Aniroop Mathur
2016-11-28 19:35 ` kbuild test robot [this message]
2016-11-28 19:35   ` kbuild test robot
2016-11-28 19:55 Aniroop Mathur
2016-11-29 21:02 ` Aniroop Mathur
2016-12-04  8:02   ` Igor Grinberg
2016-12-04 13:05     ` Aniroop Mathur
2016-12-18  7:35       ` Igor Grinberg
2016-12-18 23:30         ` Dmitry Torokhov

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=201611290300.6bgyrZJs%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=a.mathur@samsung.com \
    --cc=aniroop.mathur@gmail.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=grinberg@compulab.co.il \
    --cc=kbuild-all@01.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mike@compulab.co.il \
    --cc=r.mahale@samsung.com \
    --cc=s.samuel@samsung.com \
    /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.