1. 17 Jan, 2018 10 commits
  2. 16 Jan, 2018 10 commits
  3. 15 Jan, 2018 20 commits
    • Greg Kroah-Hartman's avatar
      staging: dgnc: remove duplicated tty defines · 0f45b23a
      Greg Kroah-Hartman authored
      The dgnc driver defined numerous TTY defines that the core kernel
      already defines.  So just remove this duplication.
      
      Cc: Lidza Louina <lidza.louina@gmail.com>
      Cc: Mark Hounschell <markh@compro.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      0f45b23a
    • Greg Kroah-Hartman's avatar
      staging: dgnc: make dgnc_poll_tick static · df5dee80
      Greg Kroah-Hartman authored
      No one needs to see this global variable, so make it static.
      
      Cc: Lidza Louina <lidza.louina@gmail.com>
      Cc: Mark Hounschell <markh@compro.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      df5dee80
    • Greg Kroah-Hartman's avatar
      staging: dgnc: remove some global variables · 373aa75a
      Greg Kroah-Hartman authored
      There were some global variables not being used at all, so just delete
      them.
      
      Cc: Lidza Louina <lidza.louina@gmail.com>
      Cc: Mark Hounschell <markh@compro.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      373aa75a
    • Greg Kroah-Hartman's avatar
      staging: dgnc: make dgnc_poll_lock static · f5b612d6
      Greg Kroah-Hartman authored
      There's no need for this spinlock to be global, so make it a static
      variable.
      
      Cc: Lidza Louina <lidza.louina@gmail.com>
      Cc: Mark Hounschell <markh@compro.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      f5b612d6
    • Greg Kroah-Hartman's avatar
      staging: dgnc: make dgnc_num_boards static · 197c3196
      Greg Kroah-Hartman authored
      There's no need for the world to know the number of dgnc boards in the
      system, so just make it a static variable.
      
      Cc: Lidza Louina <lidza.louina@gmail.com>
      Cc: Mark Hounschell <markh@compro.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      197c3196
    • Greg Kroah-Hartman's avatar
      staging: dgnc: remove crazy "management" device node · 37034c1b
      Greg Kroah-Hartman authored
      There's no need for a special character device just to get some random
      information out of a single serial port driver.  So remove the
      dgnc_mgmt.c file, and some structures and ioctl definitions that only it
      was using.
      
      Cc: Lidza Louina <lidza.louina@gmail.com>
      Cc: Mark Hounschell <markh@compro.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      37034c1b
    • Greg Kroah-Hartman's avatar
      staging: dgnc: delete dgnc_utils.c · f75c1b29
      Greg Kroah-Hartman authored
      There was just one function in it, and it duplicated what
      msleep_interruptable() was doing, which is pointless, so delete it and
      fix up the one calling site.
      
      Cc: Lidza Louina <lidza.louina@gmail.com>
      Cc: Mark Hounschell <markh@compro.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      f75c1b29
    • Greg Kroah-Hartman's avatar
      staging: fbtft: remove redundant license text · 78c00ccc
      Greg Kroah-Hartman authored
      Now that the SPDX tag is in all fbtft 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: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      78c00ccc
    • Greg Kroah-Hartman's avatar
      staging: fbtft: add SPDX identifiers · 783de57c
      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.
      
      Fix up the all of the staging fbtft drivers to have a proper SPDX
      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>
      Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      783de57c
    • Greg Kroah-Hartman's avatar
      staging: emxx_udc: remove redundant license text · a04c7278
      Greg Kroah-Hartman authored
      Now that the SPDX tag is in the emxx_udc 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.
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      a04c7278
    • Greg Kroah-Hartman's avatar
      staging: emxx_udc: add SPDX identifier. · 38e08a45
      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.
      
      Fix up the staging emxx_udc driver to have a proper SPDX 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>
      38e08a45
    • Greg Kroah-Hartman's avatar
      staging: clocking-wizard: remove redundant license text · 09956d59
      Greg Kroah-Hartman authored
      Now that the SPDX tag is in the clocking-wizard 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.
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      09956d59
    • Greg Kroah-Hartman's avatar
      staging: clocking-wizard: add SPDX identifier. · 1dbb3344
      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.
      
      Fix up the staging clocking-wizard driver to have a proper SPDX
      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>
      1dbb3344
    • Greg Kroah-Hartman's avatar
      staging: dgnc: remove redundant license text · ac1eedf2
      Greg Kroah-Hartman authored
      Now that the SPDX tag is in all drivers/staging/dgnc 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: Lidza Louina <lidza.louina@gmail.com>
      Cc: Mark Hounschell <markh@compro.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      ac1eedf2
    • Greg Kroah-Hartman's avatar
      staging: dgnc: add SPDX identifier. · 0efdb6da
      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.
      
      Fix up the staging dgnc driver to have a proper SPDX 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>
      Cc: Lidza Louina <lidza.louina@gmail.com>
      Cc: Mark Hounschell <markh@compro.net>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      0efdb6da
    • Greg Kroah-Hartman's avatar
      staging: fwserial: remove redundant license text · d461cc8a
      Greg Kroah-Hartman authored
      Now that the SPDX tag is in all drivers/staging/fwserial/ 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.
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      d461cc8a
    • Greg Kroah-Hartman's avatar
      staging: fwserial: add SPDX identifier. · 980e27bd
      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.
      
      Fix up the staging fwserial driver to have a proper SPDX 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>
      980e27bd
    • Greg Kroah-Hartman's avatar
      staging: octeon: remove redundant license text · 98a95b9c
      Greg Kroah-Hartman authored
      Now that the SPDX tag is in all drivers/staging/octeon/ 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.
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      98a95b9c
    • Greg Kroah-Hartman's avatar
      staging: octeon: add SPDX identifiers. · 30bdc499
      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.
      
      Fix up the staging octeon driver to have a proper SPDX 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>
      30bdc499
    • Greg Kroah-Hartman's avatar
      staging: nvec: remove redundant license text · d6d69c82
      Greg Kroah-Hartman authored
      Now that the SPDX tag is in all drivers/staging/nvec/ 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: Marc Dietrich <marvin24@gmx.de>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      d6d69c82