All of lore.kernel.org
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: kbuild-all@01.org, Thierry Reding <thierry.reding@gmail.com>,
	Jean Delvare <jdelvare@suse.com>,
	Guenter Roeck <linux@roeck-us.net>,
	Kamil Debski <kamil@wypas.org>,
	Tomasz Figa <tomasz.figa@gmail.com>,
	linux-pwm@vger.kernel.org, linux-hwmon@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-samsung-soc@vger.kernel.org,
	b.zolnierkie@samsung.com
Subject: Re: [PATCH 2/3] pwm: pwm-samsung: fix suspend/resume support
Date: Tue, 4 Apr 2017 13:40:47 +0800	[thread overview]
Message-ID: <201704041347.DRT3ozty%fengguang.wu@intel.com> (raw)
In-Reply-To: <1491227226-12972-3-git-send-email-b.zolnierkie@samsung.com>

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

Hi Bartlomiej,

[auto build test ERROR on hwmon/hwmon-next]
[also build test ERROR on v4.11-rc5 next-20170403]
[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/Bartlomiej-Zolnierkiewicz/pwm-pwm-samsung-fix-suspend-resume-support/20170404-121010
base:   https://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-next
config: arm64-defconfig (attached as .config)
compiler: aarch64-linux-gnu-gcc (Debian 6.1.1-9) 6.1.1 20160705
reproduce:
        wget https://raw.githubusercontent.com/01org/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=arm64 

All errors (new ones prefixed by >>):

   drivers//pwm/pwm-samsung.c: In function 'pwm_samsung_resume':
>> drivers//pwm/pwm-samsung.c:626:30: error: passing argument 1 of 'pwm_samsung_manual_update' from incompatible pointer type [-Werror=incompatible-pointer-types]
       pwm_samsung_manual_update(chip, pwm);
                                 ^~~~
   drivers//pwm/pwm-samsung.c:288:13: note: expected 'struct samsung_pwm_chip *' but argument is of type 'struct pwm_chip *'
    static void pwm_samsung_manual_update(struct samsung_pwm_chip *chip,
                ^~~~~~~~~~~~~~~~~~~~~~~~~
   cc1: some warnings being treated as errors

vim +/pwm_samsung_manual_update +626 drivers//pwm/pwm-samsung.c

   620						our_chip->inverter_mask & BIT(i));
   621	
   622			if (chan->period_ns) {
   623				__pwm_samsung_config(chip, pwm, chan->duty_ns,
   624						     chan->period_ns, true);
   625				/* needed to make PWM disable work on Odroid-XU3 */
 > 626				pwm_samsung_manual_update(chip, pwm);
   627			}
   628	
   629			if (our_chip->disabled_mask & BIT(i))

---
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: 34549 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kbuild test robot <lkp@intel.com>
Cc: kbuild-all@01.org, Thierry Reding <thierry.reding@gmail.com>,
	Jean Delvare <jdelvare@suse.com>,
	Guenter Roeck <linux@roeck-us.net>,
	Kamil Debski <kamil@wypas.org>,
	Tomasz Figa <tomasz.figa@gmail.com>,
	linux-pwm@vger.kernel.org, linux-hwmon@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-samsung-soc@vger.kernel.org,
	b.zolnierkie@samsung.com
Subject: Re: [PATCH 2/3] pwm: pwm-samsung: fix suspend/resume support
Date: Tue, 4 Apr 2017 13:40:47 +0800	[thread overview]
Message-ID: <201704041347.DRT3ozty%fengguang.wu@intel.com> (raw)
In-Reply-To: <1491227226-12972-3-git-send-email-b.zolnierkie@samsung.com>

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

Hi Bartlomiej,

[auto build test ERROR on hwmon/hwmon-next]
[also build test ERROR on v4.11-rc5 next-20170403]
[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/Bartlomiej-Zolnierkiewicz/pwm-pwm-samsung-fix-suspend-resume-support/20170404-121010
base:   https://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-next
config: arm64-defconfig (attached as .config)
compiler: aarch64-linux-gnu-gcc (Debian 6.1.1-9) 6.1.1 20160705
reproduce:
        wget https://raw.githubusercontent.com/01org/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=arm64 

All errors (new ones prefixed by >>):

   drivers//pwm/pwm-samsung.c: In function 'pwm_samsung_resume':
>> drivers//pwm/pwm-samsung.c:626:30: error: passing argument 1 of 'pwm_samsung_manual_update' from incompatible pointer type [-Werror=incompatible-pointer-types]
       pwm_samsung_manual_update(chip, pwm);
                                 ^~~~
   drivers//pwm/pwm-samsung.c:288:13: note: expected 'struct samsung_pwm_chip *' but argument is of type 'struct pwm_chip *'
    static void pwm_samsung_manual_update(struct samsung_pwm_chip *chip,
                ^~~~~~~~~~~~~~~~~~~~~~~~~
   cc1: some warnings being treated as errors

vim +/pwm_samsung_manual_update +626 drivers//pwm/pwm-samsung.c

   620						our_chip->inverter_mask & BIT(i));
   621	
   622			if (chan->period_ns) {
   623				__pwm_samsung_config(chip, pwm, chan->duty_ns,
   624						     chan->period_ns, true);
   625				/* needed to make PWM disable work on Odroid-XU3 */
 > 626				pwm_samsung_manual_update(chip, pwm);
   627			}
   628	
   629			if (our_chip->disabled_mask & BIT(i))

---
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: 34549 bytes --]

  reply	other threads:[~2017-04-04  5:41 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20170403134731epcas1p411267df663cda69eb32f382011fdda08@epcas1p4.samsung.com>
2017-04-03 13:47 ` [PATCH 0/3] pwm: pwm-samsung: fix suspend/resume support Bartlomiej Zolnierkiewicz
     [not found]   ` <CGME20170403134735epcas5p252798426964621f81114614c525f38ba@epcas5p2.samsung.com>
2017-04-03 13:47     ` [PATCH 1/3] pwm: pwm-samsung: remove redundant checks from pwm_samsung_config() Bartlomiej Zolnierkiewicz
     [not found]   ` <CGME20170403134738epcas1p43be0c60fa93d85364914fc6de0cee3e2@epcas1p4.samsung.com>
2017-04-03 13:47     ` [PATCH 2/3] pwm: pwm-samsung: fix suspend/resume support Bartlomiej Zolnierkiewicz
2017-04-04  5:40       ` kbuild test robot [this message]
2017-04-04  5:40         ` kbuild test robot
     [not found]   ` <CGME20170403134742epcas1p42a7ea96e9c27d5752796ca9ff86d0f1e@epcas1p4.samsung.com>
2017-04-03 13:47     ` [PATCH 3/3] hwmon: pwm-fan: remove no longer needed suspend/resume code Bartlomiej Zolnierkiewicz
2017-04-03 15:52       ` Guenter Roeck

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=201704041347.DRT3ozty%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=b.zolnierkie@samsung.com \
    --cc=jdelvare@suse.com \
    --cc=kamil@wypas.org \
    --cc=kbuild-all@01.org \
    --cc=linux-hwmon@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pwm@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=thierry.reding@gmail.com \
    --cc=tomasz.figa@gmail.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.