1. 28 Nov, 2017 22 commits
    • Stephen Hemminger's avatar
      ipx: move Novell IPX protocol support into staging · e02554e9
      Stephen Hemminger authored
      The Netware IPX protocol is very old and no one should still be using
      it. It is time to move it into staging for a while and eventually
      decommision it.
      Signed-off-by: default avatarStephen Hemminger <stephen@networkplumber.org>
      Acked-by: default avatarDavid S. Miller <davem@davemloft.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      e02554e9
    • Daniel Vetter's avatar
      staging/sm750fb: Add "port to atomic kms" to TODO · da1725ca
      Daniel Vetter authored
      fbdev is closed for new drivers, drm won't take anything but atomic
      drivers.
      
      Cc: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
      Cc: Teddy Wang <teddy.wang@siliconmotion.com>
      Cc: Sudip Mukherjee <sudip@vectorindia.org>
      Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
      Cc: dri-devel@lists.freedesktop.org
      Signed-off-by: default avatarDaniel Vetter <daniel.vetter@intel.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      da1725ca
    • Arnd Bergmann's avatar
      staging: imx: use ktime_t for timestamps · ec8354b9
      Arnd Bergmann authored
      The imx media driver passes around monotonic timestamps in the deprecated
      'timespec' format. This is not a problem for the driver, as they won't
      overflow, but moving to either timespec64 or ktime_t is preferred.
      
      I'm picking ktime_t for simplicity here. frame_interval_monitor() is
      the main function that changes, as it tries to compare a time interval
      in microseconds. The algorithm slightly changes here, to avoid 64-bit
      division. The code previously assumed that the error was at most 32-bit
      worth of microseconds here, so I'm making the same assumption but add
      an explicit test for it.
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      ec8354b9
    • Arnd Bergmann's avatar
      staging: bcm2835-camera use ktime_t for timestamps · 6cf83f2a
      Arnd Bergmann authored
      struct timeval is deprecated for in-kernel use, and converting
      this function to use ktime_t makes it simpler as well.
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      6cf83f2a
    • Christian Gromm's avatar
      staging: most: make DEVICE_ATTR structures static · f15e3ad3
      Christian Gromm authored
      In order to limit the scope of the DEVICE_ATTR structure this patch
      adds the keywork static.
      Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      f15e3ad3
    • Christian Gromm's avatar
      staging: most: remove legacy folders · fc10bf7e
      Christian Gromm authored
      This patch removes the legacy folders of the modules. It is needed
      to clean up the driver's source tree.
      Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      fc10bf7e
    • Christian Gromm's avatar
      staging: most: fix Makefile · 8fc2a66b
      Christian Gromm authored
      This patch fixes the names of the CONFIG symbols and the subfolders make
      is supposed to enter in order to build the selected modules.
      Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      8fc2a66b
    • Greg Kroah-Hartman's avatar
      staging: android: Remove redundant license text · 204a68f0
      Greg Kroah-Hartman authored
      Now that the SPDX tag is in all android files, that identifies the
      license in a specific and legally-defined manner.  So the extra GPL text
      wording can be removed as it is no longer needed at all.
      
      This is done on a quest to remove the 700+ different ways that files in
      the kernel describe the GPL license text.  And there's unneeded stuff
      like the address (sometimes incorrect) for the FSF which is never
      needed.
      
      No copyright headers or other non-license-description text was removed.
      
      Cc: "Arve Hjønnevåg" <arve@android.com>
      Cc: Riley Andrews <riandrews@android.com>
      Cc: Sumit Semwal <sumit.semwal@linaro.org>
      Acked-by: default avatarLaura Abbott <labbott@redhat.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      204a68f0
    • Greg Kroah-Hartman's avatar
      staging: vt6655: Remove redundant license text · dbc9f36c
      Greg Kroah-Hartman authored
      Now that the SPDX tag is in all vt6655 files, that identifies the
      license in a specific and legally-defined manner.  So the extra GPL text
      wording can be removed as it is no longer needed at all.
      
      This is done on a quest to remove the 700+ different ways that files in
      the kernel describe the GPL license text.  And there's unneeded stuff
      like the address (sometimes incorrect) for the FSF which is never
      needed.
      
      No copyright headers or other non-license-description text was removed.
      
      Cc: Forest Bond <forest@alittletooquiet.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      dbc9f36c
    • Greg Kroah-Hartman's avatar
      staging: vt6656: Remove redundant license text · dd41dab5
      Greg Kroah-Hartman authored
      Now that the SPDX tag is in all vt6656 files, that identifies the
      license in a specific and legally-defined manner.  So the extra GPL text
      wording can be removed as it is no longer needed at all.
      
      This is done on a quest to remove the 700+ different ways that files in
      the kernel describe the GPL license text.  And there's unneeded stuff
      like the address (sometimes incorrect) for the FSF which is never
      needed.
      
      No copyright headers or other non-license-description text was removed.
      
      Cc: Forest Bond <forest@alittletooquiet.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      dd41dab5
    • Greg Kroah-Hartman's avatar
      staging: android: add SPDX identifiers to all android driver files · bdcb7be6
      Greg Kroah-Hartman authored
      It's good to have SPDX identifiers in all files to make it easier to
      audit the kernel tree for correct licenses.
      
      Update the android driver files with the correct SPDX license identifier
      based on the license text in the file itself.  The SPDX identifier is a
      legally binding shorthand, which can be used instead of the full boiler
      plate text.
      
      This work is based on a script and data from Thomas Gleixner, Philippe
      Ombredanne, and Kate Stewart.
      
      Cc: "Arve Hjønnevåg" <arve@android.com>
      Cc: Riley Andrews <riandrews@android.com>
      Cc: Sumit Semwal <sumit.semwal@linaro.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Kate Stewart <kstewart@linuxfoundation.org>
      Cc: Philippe Ombredanne <pombredanne@nexb.com>
      Acked-by: default avatarLaura Abbott <labbott@redhat.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      bdcb7be6
    • Greg Kroah-Hartman's avatar
      staging: vt6655: add SPDX identifiers to all vt6655 driver files · d7c43082
      Greg Kroah-Hartman authored
      It's good to have SPDX identifiers in all files to make it easier to
      audit the kernel tree for correct licenses.
      
      Update the vt6655 driver files with the correct SPDX license identifier
      based on the license text in the file itself.  The SPDX identifier is a
      legally binding shorthand, which can be used instead of the full boiler
      plate text.
      
      This work is based on a script and data from Thomas Gleixner, Philippe
      Ombredanne, and Kate Stewart.
      
      Cc: Forest Bond <forest@alittletooquiet.net>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Kate Stewart <kstewart@linuxfoundation.org>
      Cc: Philippe Ombredanne <pombredanne@nexb.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      d7c43082
    • Greg Kroah-Hartman's avatar
      staging: vt6656: add SPDX identifiers to all vt6656 driver files · 6b4c6ce8
      Greg Kroah-Hartman authored
      It's good to have SPDX identifiers in all files to make it easier to
      audit the kernel tree for correct licenses.
      
      Update the vt6656 driver files with the correct SPDX license identifier
      based on the license text in the file itself.  The SPDX identifier is a
      legally binding shorthand, which can be used instead of the full boiler
      plate text.
      
      This work is based on a script and data from Thomas Gleixner, Philippe
      Ombredanne, and Kate Stewart.
      
      Cc: Forest Bond <forest@alittletooquiet.net>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Kate Stewart <kstewart@linuxfoundation.org>
      Cc: Philippe Ombredanne <pombredanne@nexb.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      6b4c6ce8
    • Greg Kroah-Hartman's avatar
      staging: wlan-ng: add SPDX identifiers to all wlan-ng driver files · f7056d33
      Greg Kroah-Hartman authored
      It's good to have SPDX identifiers in all files to make it easier to
      audit the kernel tree for correct licenses.
      
      Update the wlan-ng driver files with the correct SPDX license identifier
      based on the license text in the file itself.  The SPDX identifier is a
      legally binding shorthand, which can be used instead of the full boiler
      plate text.
      
      This work is based on a script and data from Thomas Gleixner, Philippe
      Ombredanne, and Kate Stewart.
      
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Kate Stewart <kstewart@linuxfoundation.org>
      Cc: Philippe Ombredanne <pombredanne@nexb.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      f7056d33
    • Greg Kroah-Hartman's avatar
      staging: wilc1000: add SPDX identifiers to all wilc100 files · 903ac63f
      Greg Kroah-Hartman authored
      It's good to have SPDX identifiers in all files to make it easier to
      audit the kernel tree for correct licenses.
      
      Update the wilc100 driver files with the correct SPDX license identifier
      based on the license text in the file itself.  The SPDX identifier is a
      legally binding shorthand, which can be used instead of the full boiler
      plate text.
      
      This work is based on a script and data from Thomas Gleixner, Philippe
      Ombredanne, and Kate Stewart.
      
      Cc: Ganesh Krishna <ganesh.krishna@microchip.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Kate Stewart <kstewart@linuxfoundation.org>
      Cc: Philippe Ombredanne <pombredanne@nexb.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      Acked-by: default avatarAditya Shankar <aditya.shankar@microchip.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      903ac63f
    • Greg Kroah-Hartman's avatar
      staging: xgifb: add SPDX identifiers to the remaining holdout file · 1e80af4c
      Greg Kroah-Hartman authored
      It's good to have SPDX identifiers in all files to make it easier to
      audit the kernel tree for correct licenses.
      
      Update the xgifb/XGI_main_26.c file with the correct SPDX license
      identifier based on the license text in the file itself.  The SPDX
      identifier is a legally binding shorthand, which can be used instead of
      the full boiler plate text.
      
      This work is based on a script and data from Thomas Gleixner, Philippe
      Ombredanne, and Kate Stewart.
      
      Cc: Arnaud Patard <arnaud.patard@rtp-net.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Kate Stewart <kstewart@linuxfoundation.org>
      Cc: Philippe Ombredanne <pombredanne@nexb.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      1e80af4c
    • Greg Kroah-Hartman's avatar
      staging: unisys: Remove redundant license text · 2baffb72
      Greg Kroah-Hartman authored
      Now that the SPDX tag is in all unisys driver files, that identifies the
      license in a specific and legally-defined manner.  So the extra GPL text
      wording can be removed as it is no longer needed at all.
      
      This is done on a quest to remove the 700+ different ways that files in
      the kernel describe the GPL license text.  And there's unneeded stuff
      like the address (sometimes incorrect) for the FSF which is never
      needed.
      
      No copyright headers or other non-license-description text was removed.
      
      Cc: David Kershner <david.kershner@unisys.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      2baffb72
    • Greg Kroah-Hartman's avatar
      staging: unisys: fix up some SPDX tags · 184e7e4a
      Greg Kroah-Hartman authored
      One .h file was missing a SPDX tag, and another one was wrong after
      looking at the text of the license itself, so fix both of these issues
      up at the same time.
      
      Cc: David Kershner <david.kershner@unisys.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Kate Stewart <kstewart@linuxfoundation.org>
      Cc: Philippe Ombredanne <pombredanne@nexb.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      184e7e4a
    • Greg Kroah-Hartman's avatar
      staging: unisys: add SPDX identifiers to all unisys driver files · b79c0f4f
      Greg Kroah-Hartman authored
      It's good to have SPDX identifiers in all files to make it easier to
      audit the kernel tree for correct licenses.
      
      Update the drivers/staging/unisys files files with the correct SPDX
      license identifier based on the license text in the file itself.  The
      SPDX identifier is a legally binding shorthand, which can be used
      instead of the full boiler plate text.
      
      This work is based on a script and data from Thomas Gleixner, Philippe
      Ombredanne, and Kate Stewart.
      
      Cc: David Kershner <david.kershner@unisys.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Kate Stewart <kstewart@linuxfoundation.org>
      Cc: Philippe Ombredanne <pombredanne@nexb.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      b79c0f4f
    • Greg Kroah-Hartman's avatar
      staging: comedi: Remove redundant license text · f814e74c
      Greg Kroah-Hartman authored
      Now that the SPDX tag is in all comedi files, that identifies the
      license in a specific and legally-defined manner.  So the extra GPL text
      wording can be removed as it is no longer needed at all.
      
      This is done on a quest to remove the 700+ different ways that files in
      the kernel describe the GPL license text.  And there's unneeded stuff
      like the address (sometimes incorrect) for the FSF which is never
      needed.
      
      No copyright headers or other non-license-description text was removed.
      
      Cc: Ian Abbott <abbotti@mev.co.uk>
      Cc: H Hartley Sweeten <hsweeten@visionengravers.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      f814e74c
    • Greg Kroah-Hartman's avatar
      staging: comedi: drivers: Remove redundant license text · b6983939
      Greg Kroah-Hartman authored
      Now that the SPDX tag is in all comedi files, that identifies the
      license in a specific and legally-defined manner.  So the extra GPL text
      wording can be removed as it is no longer needed at all.
      
      This is done on a quest to remove the 700+ different ways that files in
      the kernel describe the GPL license text.  And there's unneeded stuff
      like the address (sometimes incorrect) for the FSF which is never
      needed.
      
      No copyright headers or other non-license-description text was removed.
      
      Cc: Ian Abbott <abbotti@mev.co.uk>
      Cc: H Hartley Sweeten <hsweeten@visionengravers.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      b6983939
    • Greg Kroah-Hartman's avatar
      staging: comedi: add SPDX identifiers to all greybus driver files · e184e2be
      Greg Kroah-Hartman authored
      It's good to have SPDX identifiers in all files to make it easier to
      audit the kernel tree for correct licenses.
      
      Update the drivers/staging/comedi files files with the correct SPDX
      license identifier based on the license text in the file itself.  The
      SPDX identifier is a legally binding shorthand, which can be used
      instead of the full boiler plate text.
      
      This work is based on a script and data from Thomas Gleixner, Philippe
      Ombredanne, and Kate Stewart.
      
      Cc: Ian Abbott <abbotti@mev.co.uk>
      Cc: H Hartley Sweeten <hsweeten@visionengravers.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Kate Stewart <kstewart@linuxfoundation.org>
      Cc: Philippe Ombredanne <pombredanne@nexb.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      e184e2be
  2. 27 Nov, 2017 18 commits