Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1573796

Re: [PATCH 4/5] Input: xpad - restore LED state after device resume

From Cameron Gutman <aicommander@gmail.com>
Newsgroups linux.kernel
Subject Re: [PATCH 4/5] Input: xpad - restore LED state after device resume
Date 2017-02-05 02:50 +0100
Message-ID <t7k7L-DR-3@gated-at.bofh.it> (permalink)
References <t7jEJ-tr-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On 02/04/2017 05:17 PM, kbuild test robot wrote:
> Hi Cameron,
> 
> [auto build test ERROR on input/next]
> [also build test ERROR on v4.10-rc6 next-20170203]
> [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/Cameron-Gutman/Correctly-support-some-quirky-Xbox-One-pads/20170205-083659
> base:   https://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git next
> config: x86_64-randconfig-x016-201706 (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/joystick/xpad.c: In function 'xpad_resume':
>>> drivers/input/joystick/xpad.c:1700:10: error: 'struct usb_xpad' has no member named 'led'
>      if (xpad->led)
>              ^~
>>> drivers/input/joystick/xpad.c:1701:3: error: implicit declaration of function 'xpad_send_led_command' [-Werror=implicit-function-declaration]
>       xpad_send_led_command(xpad, xpad->led->led_cdev.brightness);
>       ^~~~~~~~~~~~~~~~~~~~~
>    drivers/input/joystick/xpad.c:1701:35: error: 'struct usb_xpad' has no member named 'led'
>       xpad_send_led_command(xpad, xpad->led->led_cdev.brightness);
>                                       ^~
>    cc1: some warnings being treated as errors

Whoops, missed a CONFIG_JOYSTICK_XPAD_LEDS guard around that.

I'll send a v2 in the next day or two, incorporating this fix plus any review
comments made in the meantime.

> 
> vim +1700 drivers/input/joystick/xpad.c
> 
>   1694				retval = xpad_start_xbox_one(xpad);
>   1695			}
>   1696			mutex_unlock(&input->mutex);
>   1697		}
>   1698	
>   1699		/* LED state is lost across resume, so resend the last command */
>> 1700		if (xpad->led)
>> 1701			xpad_send_led_command(xpad, xpad->led->led_cdev.brightness);
>   1702	
>   1703		return retval;
>   1704	}
> 
> ---
> 0-DAY kernel test infrastructure                Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all                   Intel Corporation
> 

Regards,
Cameron

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 0/5] Correctly support some quirky Xbox One pads Cameron Gutman <aicommander@gmail.com> - 2017-02-05 01:40 +0100
  [PATCH 2/5] Input: xpad - add init packet for Hori and Titanfall 2 pads Cameron Gutman <aicommander@gmail.com> - 2017-02-05 01:40 +0100
  [PATCH 5/5] Input: xpad - fix stuck mode button on Xbox One S pad Cameron Gutman <aicommander@gmail.com> - 2017-02-05 01:40 +0100
    Re: [PATCH 5/5] Input: xpad - fix stuck mode button on Xbox One S pad Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2017-02-06 23:10 +0100
  [PATCH 4/5] Input: xpad - restore LED state after device resume Cameron Gutman <aicommander@gmail.com> - 2017-02-05 01:40 +0100
    Re: [PATCH 4/5] Input: xpad - restore LED state after device resume kbuild test robot <lkp@intel.com> - 2017-02-05 02:20 +0100
      Re: [PATCH 4/5] Input: xpad - restore LED state after device resume Cameron Gutman <aicommander@gmail.com> - 2017-02-05 02:50 +0100
    Re: [PATCH 4/5] Input: xpad - restore LED state after device resume Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2017-02-06 23:10 +0100
      Re: [PATCH 4/5] Input: xpad - restore LED state after device resume Cameron Gutman <aicommander@gmail.com> - 2017-02-07 00:00 +0100
  [PATCH 3/5] Input: xpad - send rumble on Xbox One init to fix PowerA pads Cameron Gutman <aicommander@gmail.com> - 2017-02-05 01:40 +0100
    Re: [PATCH 3/5] Input: xpad - send rumble on Xbox One init to fix  PowerA pads Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2017-02-06 23:20 +0100
  [PATCH 1/5] Input: xpad - use a packet array to start Xbox One pads Cameron Gutman <aicommander@gmail.com> - 2017-02-05 01:40 +0100

csiph-web