Skip to content

Commits

Commits on Jul 29, 2020

  1. staging/speakup: Move out of staging

    The nasty TODO items are done.
    
    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Link: https://lore.kernel.org/r/20200729003531.907370-1-samuel.thibault@ens-lyon.org
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    sthibaul authored and gregkh committed Jul 29, 2020
    Copy the full SHA
    2067fd9 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Jul 28, 2020

  1. staging/speakup: Update TODO list

    Thanks to Okash's latest work, the TODO list is essentially empty, so
    the way out from staging now seems open.
    
    The status of the remaining issue mentioned in TODO is not clear, we
    asked the speakup user mailing list for reproducer cases, but didn't get
    a really specific scenario. One serious bug was fixed by 9d32c0c
    ("staging/speakup: fix get_word non-space look-ahead"), which does not
    seem to really be related to the bug mentioned in TODO. Possibly the bug
    mentioned in TODO has been fixed long ago and people have been thinking
    that it was not because they can not distinguish the symptoms mentioned
    in TODO from the symptoms of the bug fixed by 9d32c0c.
    
    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    
    Link: https://lore.kernel.org/r/20200726165452.qhos3wrjcm6jmcmx@function
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    sthibaul authored and gregkh committed Jul 28, 2020
    Copy the full SHA
    53754e4 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Jul 13, 2020

  1. Staging: speakup: Replace HTTP links with HTTPS ones

    Rationale:
    Reduces attack surface on kernel devs opening the links for MITM
    as HTTPS traffic is much harder to manipulate.
    
    Deterministic algorithm:
    For each file:
      If not .svg:
        For each line:
          If doesn't contain `\bxmlns\b`:
            For each link, `\bhttp://[^# \t\r\n]*(?:\w|/)`:
    	  If neither `\bgnu\.org/license`, nor `\bmozilla\.org/MPL\b`:
                If both the HTTP and HTTPS versions
                return 200 OK and serve the same content:
                  Replace HTTP with HTTPS.
    
    Signed-off-by: Alexander A. Klimov <grandmaster@al2klimov.de>
    Link: https://lore.kernel.org/r/20200713091305.32708-1-grandmaster@al2klimov.de
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Al2Klimov authored and gregkh committed Jul 13, 2020
    Copy the full SHA
    5723a0d View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Apr 28, 2020

  1. staging/speakup: Add inflection synth parameter

    The inflection parameter, i.e. the pitch range, allows to change the
    expressiveness of the synthesized voice.  This is supported by the DEC
    talk synths, and software synthesizers such as espeak/espeak-ng.
    
    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Link: https://lore.kernel.org/r/20200425193226.nv3zfd4k3xavi353@function
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    sthibaul authored and gregkh committed Apr 28, 2020
    Copy the full SHA
    d97a9d7 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Apr 3, 2020

  1. Merge tag 'char-misc-5.7-rc1' of git://git.kernel.org/pub/scm/linux/k…

    …ernel/git/gregkh/char-misc
    
    Pull char/misc driver updates from Greg KH:
     "Here is the big set of char/misc/other driver patches for 5.7-rc1.
    
      Lots of things in here, and it's later than expected due to some
      reverts to resolve some reported issues. All is now clean with no
      reported problems in linux-next.
    
      Included in here is:
       - interconnect updates
       - mei driver updates
       - uio updates
       - nvmem driver updates
       - soundwire updates
       - binderfs updates
       - coresight updates
       - habanalabs updates
       - mhi new bus type and core
       - extcon driver updates
       - some Kconfig cleanups
       - other small misc driver cleanups and updates
    
      As mentioned, all have been in linux-next for a while, and with the
      last two reverts, all is calm and good"
    
    * tag 'char-misc-5.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc: (174 commits)
      Revert "driver core: platform: Initialize dma_parms for platform devices"
      Revert "amba: Initialize dma_parms for amba devices"
      amba: Initialize dma_parms for amba devices
      driver core: platform: Initialize dma_parms for platform devices
      bus: mhi: core: Drop the references to mhi_dev in mhi_destroy_device()
      bus: mhi: core: Initialize bhie field in mhi_cntrl for RDDM capture
      bus: mhi: core: Add support for reading MHI info from device
      misc: rtsx: set correct pcr_ops for rts522A
      speakup: misc: Use dynamic minor numbers for speakup devices
      mei: me: add cedar fork device ids
      coresight: do not use the BIT() macro in the UAPI header
      Documentation: provide IBM contacts for embargoed hardware
      nvmem: core: remove nvmem_sysfs_get_groups()
      nvmem: core: use is_bin_visible for permissions
      nvmem: core: use device_register and device_unregister
      nvmem: core: add root_only member to nvmem device struct
      extcon: axp288: Add wakeup support
      extcon: Mark extcon_get_edev_name() function as exported symbol
      extcon: palmas: Hide error messages if gpio returns -EPROBE_DEFER
      dt-bindings: extcon: usbc-cros-ec: convert extcon-usbc-cros-ec.txt to yaml format
      ...
    torvalds committed Apr 3, 2020
    Copy the full SHA
    0ad5b05 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Mar 26, 2020

  1. speakup: misc: Use dynamic minor numbers for speakup devices

    Arnd notes in the link:
       | To clarify: the only numbers that I think should be changed to dynamic
       | allocation are for drivers/staging/speakup. While this is a fairly old
       | subsystem, I would expect that it being staging means we can be a
       | little more progressive with the changes.
    
    This releases misc device minor numbers 25-27 for dynamic usage.
    
    Link: https://lore.kernel.org/lkml/20200120221323.GJ15860@mit.edu/t/
    Suggested-by: Arnd Bergmann <arnd@arndb.de>
    Signed-off-by: Zhenzhong Duan <zhenzhong.duan@gmail.com>
    Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Cc: William Hubbs <w.d.hubbs@gmail.com>
    Cc: Chris Brannon <chris@the-brannons.com>
    Cc: Kirk Reiser <kirk@reisers.ca>
    Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Link: https://lore.kernel.org/r/20200325033008.9633-1-zhenzhong.duan@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Zhenzhong Duan authored and gregkh committed Mar 26, 2020
    Copy the full SHA
    d43bea2 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Mar 24, 2020

  1. Staging: speakup: Add identifier name to function declaration arguments.

    void (*read_buff_add) argument didn't have an identifier name,
    adding a name to it like the rest of all functions' arguments.
    
    Signed-off-by: Sam Muhammed <jane.pnx9@gmail.com>
    Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Link: https://lore.kernel.org/r/b2a1ca962553194840d8cd2bf1f7d3174e3b1336.1585046066.git.jane.pnx9@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Sam Muhammed authored and gregkh committed Mar 24, 2020
    Copy the full SHA
    22dd4ac View commit details
    View at this point in the history
    Browse the repository at this point in the history
  2. Staging: speakup: Use sizeof(*var) in kmalloc().

    Modifying struct allocation in kmalloc() to match the
    coding standards.
    
    Checkpatch.pl CHECK: Prefer kmalloc(sizeof(*ldisc_data)...)
    over kmalloc(sizeof(struct spk_ldisc_data)...)
    
    Signed-off-by: Sam Muhammed <jane.pnx9@gmail.com>
    Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Link: https://lore.kernel.org/r/19494bdab5709693126e0c0ee14b179a3b601207.1585046066.git.jane.pnx9@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Sam Muhammed authored and gregkh committed Mar 24, 2020
    Copy the full SHA
    7cf9a79 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Mar 23, 2020

  1. Staging: speakup: Use pr_warn() defined in <linux/printk.h>.

    Dropping a user-defined pr_warn() and using the kernel
    message printing functions implemented in <linux/printk.h>.
    
    Since both have the same functionality, using the standard
    kernel functions is better.
    
    Signed-off-by: Sam Muhammed <jane.pnx9@gmail.com>
    Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Link: https://lore.kernel.org/r/20200322143322.29098-1-jane.pnx9@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Sam Muhammed authored and gregkh committed Mar 23, 2020
    Copy the full SHA
    1c31a13 View commit details
    View at this point in the history
    Browse the repository at this point in the history
  2. Merge 5.6-rc7 into staging-next

    We need the staging/iio fixes in here as well
    
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    gregkh committed Mar 23, 2020
    Copy the full SHA
    6203da9 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Mar 20, 2020

  1. Merge tag 'staging-5.6-rc7' of git://git.kernel.org/pub/scm/linux/ker…

    …nel/git/gregkh/staging
    
    Pull staging/IIO fixes from Greg KH:
     "Here are a number of small staging and IIO driver fixes for 5.6-rc7
    
      Nothing major here, just resolutions for some reported problems:
       - iio bugfixes for a number of different drivers
       - greybus loopback_test fixes
       - wfx driver fixes
    
      All of these have been in linux-next with no reported issues"
    
    * tag 'staging-5.6-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging:
      staging: rtl8188eu: Add device id for MERCUSYS MW150US v2
      staging: greybus: loopback_test: fix potential path truncations
      staging: greybus: loopback_test: fix potential path truncation
      staging: greybus: loopback_test: fix poll-mask build breakage
      staging: wfx: fix RCU usage between hif_join() and ieee80211_bss_get_ie()
      staging: wfx: fix RCU usage in wfx_join_finalize()
      staging: wfx: make warning about pending frame less scary
      staging: wfx: fix lines ending with a comma instead of a semicolon
      staging: wfx: fix warning about freeing in-use mutex during device unregister
      staging/speakup: fix get_word non-space look-ahead
      iio: ping: set pa_laser_ping_cfg in of_ping_match
      iio: chemical: sps30: fix missing triggered buffer dependency
      iio: st_sensors: remap SMO8840 to LIS2DH12
      iio: light: vcnl4000: update sampling periods for vcnl4040
      iio: light: vcnl4000: update sampling periods for vcnl4200
      iio: accel: adxl372: Set iio_chan BE
      iio: magnetometer: ak8974: Fix negative raw values in sysfs
      iio: trigger: stm32-timer: disable master mode when stopping
      iio: adc: stm32-dfsdm: fix sleep in atomic context
      iio: adc: at91-sama5d2_adc: fix differential channels in triggered mode
    torvalds committed Mar 20, 2020
    Copy the full SHA
    3bd1482 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Mar 17, 2020

  1. staging: speakup: main: switch multiple assignment for one assignment…

    … per line
    
    One assignment per line is preferred, instead of multiple assignments.
    To make it more readable.
    Issue found with checkpatch.
    
    Signed-off-by: Lourdes Pedrajas <lu@pplo.net>
    Reviewed-by: Samuel Thibautl <samuel.thibault@ens-lyon.org>
    Link: https://lore.kernel.org/r/20200315221247.16629-1-lu@pplo.net
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    hugecomputerdisaster authored and gregkh committed Mar 17, 2020
    Copy the full SHA
    f235198 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Mar 11, 2020

  1. staging/speakup: fix get_word non-space look-ahead

    get_char was erroneously given the address of the pointer to the text
    instead of the address of the text, thus leading to random crashes when
    the user requests speaking a word while the current position is on a space
    character and say_word_ctl is not enabled.
    
    Reported-on: bytefire/speakup#1
    Reported-by: Kirk Reiser <kirk@reisers.ca>
    Reported-by: Janina Sajka <janina@rednote.net>
    Reported-by: Alexandr Epaneshnikov <aarnaarn2@gmail.com>
    Reported-by: Gregory Nowak <greg@gregn.net>
    Reported-by: deedra waters <deedra@the-brannons.com>
    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Tested-by: Alexandr Epaneshnikov <aarnaarn2@gmail.com>
    Tested-by: Gregory Nowak <greg@gregn.net>
    Tested-by: Michael Taboada <michael@michaels.world>
    Cc: stable <stable@vger.kernel.org>
    Link: https://lore.kernel.org/r/20200306003047.thijtmqrnayd3dmw@function
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    sthibaul authored and gregkh committed Mar 11, 2020
    Copy the full SHA
    9d32c0c View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Mar 10, 2020

  1. staging: speakup: Fix a typo error print for softsynthu device

    When softsynthu device fails the register, "/dev/softsynthu" should be
    printed instead of "/dev/softsynth".
    
    Signed-off-by: Zhenzhong Duan <zhenzhong.duan@gmail.com>
    Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Cc: William Hubbs <w.d.hubbs@gmail.com>
    Cc: Chris Brannon <chris@the-brannons.com>
    Cc: Kirk Reiser <kirk@reisers.ca>
    Link: https://lore.kernel.org/r/20200305072151.403-1-zhenzhong.duan@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Zhenzhong Duan authored and gregkh committed Mar 10, 2020
    Copy the full SHA
    8080b0f View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Feb 28, 2020

  1. vt: selection, push console lock down

    We need to nest the console lock in sel_lock, so we have to push it down
    a bit. Fortunately, the callers of set_selection_* just lock the console
    lock around the function call. So moving it down is easy.
    
    In the next patch, we switch the order.
    
    Signed-off-by: Jiri Slaby <jslaby@suse.cz>
    Fixes: 07e6124 ("vt: selection, close sel_buffer race")
    Cc: stable <stable@vger.kernel.org>
    Link: https://lore.kernel.org/r/20200228115406.5735-1-jslaby@suse.cz
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Jiri Slaby authored and gregkh committed Feb 28, 2020
    Copy the full SHA
    4b70dd5 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Feb 23, 2020

  1. staging: speakup: remove redundant initialization of pointer p_key

    Pointer p_key is being initialized with a value that is never read,
    it is assigned a new value later on. The initialization is redundant
    and can be removed.
    
    Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Signed-off-by: Colin Ian King <colin.king@canonical.com>
    Addresses-Coverity: ("Unused value")
    Link: https://lore.kernel.org/r/20200223153954.420731-1-colin.king@canonical.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Colin Ian King authored and gregkh committed Feb 23, 2020
    Copy the full SHA
    42228d9 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Oct 4, 2019

  1. staging: speakup: document sysfs attributes

    Speakup exposes a set of sysfs attributes under
    /sys/accessibility/speakup/ for user-space to interact with and
    configure speakup's kernel modules. This patch describes those
    attributes. Some attributes either lack a description or contain
    incomplete description. They are marked wit TODO.
    
    Authored-by: Gregory Nowak <greg@gregn.net>
    Submitted-by: Okash Khawaja <okash.khawaja@gmail.com>
    Signed-off-by: Okash Khawaja <okash.khawaja@gmail.com>
    Link: https://lore.kernel.org/r/20191001214729.1770-1-okash.khawaja@gmail.com
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    bytefire authored and gregkh committed Oct 4, 2019
    Copy the full SHA
    5dcaa1f View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on May 30, 2019

  1. staging: speakup: serialio: fix warning linux/serial.h is included mo…

    …re than once
    
    fix below warning reported by  includecheck
    
    ./drivers/staging/speakup/serialio.h: linux/serial.h is included more
    than once.
    
    Signed-off-by: Hariprasad Kelam <hariprasad.kelam@gmail.com>
    Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Hariprasad Kelam authored and gregkh committed May 30, 2019
    Copy the full SHA
    dafb1c3 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Apr 19, 2019

  1. staging: speakup: refactor to use existing code in vt

    This patch replaces speakup's implementations with calls to functions
    in tty/vt/selection.c. Those functions are:
    
    cancel_selection()
    set_selection_kernel()
    paste_selection()
    
    Currently setting selection is done in interrupt context. However,
    set_selection_kernel() can sleep - for instance, it requires console_lock
    which can sleep. Therefore we offload that work to a work_struct thread,
    following the same pattern which was already set for paste_selection().
    When setting selection, we also get a reference to tty and make sure to
    release the reference before returning.
    
    struct speakup_paste_work has been renamed to the more generic
    speakup_selection_work because it is now used for both pasting as well
    as setting selection. When paste work is cancelled, the code wasn't
    setting tty to NULL. This patch also fixes that by setting tty to NULL
    so that in case of failure we don't get EBUSY forever.
    
    Signed-off-by: Okash Khawaja <okash.khawaja@gmail.com>
    Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Tested-by: Gregory Nowak <greg@gregn.net>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    bytefire authored and gregkh committed Apr 19, 2019
    Copy the full SHA
    41f1308 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Apr 3, 2019

  1. staging: add missing SPDX lines to Kconfig files

    There are a few remaining drivers/staging/*/Kconfig files that do not
    have SPDX identifiers in them.  Add the correct GPL-2.0 identifier to
    them to make scanning tools happy.
    
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    gregkh committed Apr 3, 2019
    Copy the full SHA
    99b75a4 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Apr 1, 2019

  1. Merge 5.1-rc3 into staging-next

    We want those fixes and this resolves an erofs merge conflict.
    
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    gregkh committed Apr 1, 2019
    Copy the full SHA
    b397f82 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Mar 18, 2019

  1. staging: speakup: fix printk KERN_LEVEL facility level warning

    Replace printk with pr_info to solve checkpatch.pl warning:
     " WARNING: printk() should include  KERN_<LEVEL> facility level"
    
    Signed-off-by: Jules Irenge <jbi.octave@gmail.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    irenge authored and gregkh committed Mar 18, 2019
    Copy the full SHA
    c9da300 View commit details
    View at this point in the history
    Browse the repository at this point in the history
  2. staging: speakup_soft: Fix alternate speech with other synths

    When switching from speakup_soft to another synth, speakup_soft would
    keep calling synth_buffer_getc() from softsynthx_read.
    
    Let's thus make synth.c export the knowledge of the current synth, so
    that speakup_soft can determine whether it should be running.
    
    speakup_soft also needs to set itself alive, otherwise the switch would
    let it remain silent.
    
    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Cc: stable <stable@vger.kernel.org>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    sthibaul authored and gregkh committed Mar 18, 2019
    Copy the full SHA
    45ac7b3 View commit details
    View at this point in the history
    Browse the repository at this point in the history
  3. staging: speakup: fix line over 80 characters.

    Fix coding style issues which solves checkpatch.pl warning:
        "WARNING: line over 80 characters".
    
    Signed-off-by: Jules Irenge <jbi.octave@gmail.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    irenge authored and gregkh committed Mar 18, 2019
    Copy the full SHA
    83053c3 View commit details
    View at this point in the history
    Browse the repository at this point in the history
  4. staging: speakup: Add spaces around operators

    Add spaces around math operators to get rid of checkpatch warning
    
    Signed-off-by: Daniela Mormocea <daniela.mormocea@gmail.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    danielamormocea authored and gregkh committed Mar 18, 2019
    Copy the full SHA
    d33fe11 View commit details
    View at this point in the history
    Browse the repository at this point in the history
  5. staging: speakup: Spaces around operator

    Add spaces around bitwise AND operator
    
    Signed-off-by: Daniela Mormocea <daniela.mormocea@gmail.com>
    Acked-by: Julia Lawall <julia.lawall@lip6.fr>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    danielamormocea authored and gregkh committed Mar 18, 2019
    Copy the full SHA
    50d280f View commit details
    View at this point in the history
    Browse the repository at this point in the history
  6. staging: speakup: Comparison to NULL.

    Fix coding style issues, detected by checkpatch.pl "CHECK: Comparison to
    NULL could be written !tty->ops->write"
    
    Signed-off-by: Bhagyashri Dighole <digholebhagyashri@gmail.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    digholebhagyashri authored and gregkh committed Mar 18, 2019
    Copy the full SHA
    2b90bf2 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Mar 1, 2019

  1. staging: speakup: fix line over 80 characters.

    Fix coding style issues, which solves checkpatch.pl warning:
    "WARNING: line over 80 characters".
    
    Signed-off-by: Bhagyashri Dighole <digholebhagyashri@gmail.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    digholebhagyashri authored and gregkh committed Mar 1, 2019
    Copy the full SHA
    e2d5501 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Feb 26, 2019

  1. staging: speakup: Note that simple_strtoul can't simply be replaced b…

    …y kstrtoul
    
    We often receive patches which erroneously try to use kstrtoul in these
    places.
    
    Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    sthibaul authored and gregkh committed Feb 26, 2019
    Copy the full SHA
    615cba3 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Feb 11, 2019

  1. Merge 5.0-rc6 into staging-next

    We need the staging fixes in here as well.
    
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    gregkh committed Feb 11, 2019
    Copy the full SHA
    3b6effb View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Jan 30, 2019

  1. staging: speakup: fix tty-operation NULL derefs

    The send_xchar() and tiocmset() tty operations are optional. Add the
    missing sanity checks to prevent user-space triggerable NULL-pointer
    dereferences.
    
    Fixes: 6b9ad1c ("staging: speakup: add send_xchar, tiocmset and input functionality for tty")
    Cc: stable <stable@vger.kernel.org>     # 4.13
    Cc: Okash Khawaja <okash.khawaja@gmail.com>
    Cc: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Signed-off-by: Johan Hovold <johan@kernel.org>
    Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    jhovold authored and gregkh committed Jan 30, 2019
    Copy the full SHA
    a1960e0 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Jan 7, 2019

  1. staging: speakup: Fix coding style

    Replaced text ---help--- with help as per style check patch recommendation
    
    Signed-off-by: Daniel <daniel.bazinga@gmail.com>
    Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Daniel Smith authored and gregkh committed Jan 7, 2019
    Copy the full SHA
    5777c30 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Dec 12, 2018

  1. staging: speakup: change semaphore to completion

    In this driver, both function the same way, but we want to eventually
    kill off semaphores, so a completion is the better choice here.
    
    Signed-off-by: Arnd Bergmann <arnd@arndb.de>
    Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    arndb authored and gregkh committed Dec 12, 2018
    Copy the full SHA
    d6a0de4 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Dec 5, 2018

  1. staging: speakup: i18n: fix spelling mistake "phoneticly" -> "phoneti…

    …cally"
    
    There is a spelling mistake in array speakup_default_msgs at index
    MSG_FUNCNAME_SPELL_WORD_PHONETICALLY, fix this.
    
    Signed-off-by: Colin Ian King <colin.king@canonical.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Colin Ian King authored and gregkh committed Dec 5, 2018
    Copy the full SHA
    979e041 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Nov 7, 2018

  1. staging: speakup: clean up few indentation issues

    Trivial fix to clean up indentation issues across the driver
    
    Signed-off-by: Colin Ian King <colin.king@canonical.com>
    Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Colin Ian King authored and gregkh committed Nov 7, 2018
    Copy the full SHA
    d427e60 View commit details
    View at this point in the history
    Browse the repository at this point in the history
Older