05 Jun, 2019

1 commit

  • Based on 1 normalized pattern(s):

    this program is free software you can redistribute it and or modify
    it under the terms of the gnu general public license as published by
    the free software foundation version 2 of the license this driver is
    distributed in the hope that it will be useful but without any
    warranty without even the implied warranty of merchantability or
    fitness for a particular purpose see the gnu general public license
    for more details you should have received a copy of the gnu general
    public license along with this software if not see http www gnu org
    licenses

    extracted by the scancode license scanner the SPDX license identifier

    GPL-2.0-only

    has been chosen to replace the boilerplate/reference in 8 file(s).

    Signed-off-by: Thomas Gleixner
    Reviewed-by: Richard Fontana
    Reviewed-by: Allison Randal
    Reviewed-by: Alexios Zavras
    Cc: linux-spdx@vger.kernel.org
    Link: https://lkml.kernel.org/r/20190529141333.861653206@linutronix.de
    Signed-off-by: Greg Kroah-Hartman

    Thomas Gleixner
     

30 Apr, 2013

1 commit


27 Mar, 2013

1 commit


25 Feb, 2013

1 commit

  • This allows the hid drivers to be independent from the transport layer.

    The patch was constructed by replacing all occurences of
    usbhid_submit_report() by its hid_hw_request() counterpart.
    Then, drivers not requiring USB_HID anymore have their USB_HID
    dependency cleaned in the Kconfig file.

    Finally, few drivers still depends on USB_HID. Many of them
    are requiring the io wait callback. They are found in the next patch.

    Signed-off-by: Benjamin Tissoires
    Reviewed-by: Mika Westerberg

    For the sensor-hub part:
    Tested-by: Mika Westerberg
    Signed-off-by: Jiri Kosina

    Benjamin Tissoires
     

11 Sep, 2012

1 commit

  • Current code missed the definition for picolcd_debug_out_report, but add
    definition for picolcd_debug_raw_event twice.

    This patch fixes below build error:
    CC [M] drivers/hid/hid-picolcd_core.o
    In file included from drivers/hid/hid-picolcd_core.c:34:0:
    drivers/hid/hid-picolcd.h:176:20: error: redefinition of 'picolcd_debug_raw_event'
    drivers/hid/hid-picolcd.h:162:20: note: previous definition of 'picolcd_debug_raw_event' was here
    make[2]: *** [drivers/hid/hid-picolcd_core.o] Error 1
    make[1]: *** [drivers/hid] Error 2
    make: *** [drivers] Error 2

    if CONFIG_DEBUG_FS is unset.

    Signed-off-by: Axel Lin
    Signed-off-by: Jiri Kosina

    Axel Lin
     

05 Sep, 2012

2 commits

  • Implement support for picoLCD's CIR header using RC_CORE for decoding
    the IR event stream.

    Signed-off-by: Bruno Prémont
    Signed-off-by: Jiri Kosina

    Bruno Prémont
     
  • Split out all FB related data out of struct picolcd_data into a struct
    picolcd_fb_data that is allocated with fb_info. This way fb_info may
    cleanly outlive struct picolcd_data for as long as needed for its last
    user to drop his reference.

    Access to struct picolcd_data is now protected with struct
    picolcd_fb_data's lock and tile update reports are only generated
    while picolcd_fbdata->picolcd is not NULL and is not marked as failed
    (which indicates unplug in progress).

    Signed-off-by: Bruno Prémont
    Signed-off-by: Jiri Kosina

    Bruno Prémont
     

15 Aug, 2012

2 commits