All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: Linus Torvalds <torvalds@linux-foundation.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Stephen Rothwell <sfr@canb.auug.org.au>
Cc: linux-kernel@vger.kernel.org, devel@linuxdriverproject.org
Subject: [GIT PULL] Staging driver fixes and a new driver for 4.13-rc2
Date: Sat, 22 Jul 2017 11:50:46 +0200	[thread overview]
Message-ID: <20170722095046.GA5372@kroah.com> (raw)

The following changes since commit 5771a8c08880cdca3bfb4a3fc6d309d6bba20877:

  Linux v4.13-rc1 (2017-07-15 15:22:10 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/ tags/staging-4.13-rc2

for you to fetch changes up to 5a1d4c5dd4eb2f1f8a9b30e61762f3b3b564df70:

  staging: rtl8188eu: add TL-WN722N v2 support (2017-07-18 09:04:22 +0200)

----------------------------------------------------------------
Staging driver fixes for 4.13-rc2

Here are some small staging driver fixes for reported issues for
4.13-rc2.

Also in here is a new driver, the virtualbox DRM driver.  It's
stand-alone and got acks from the DRM developers to go in through this
tree.  It's a new thing, but it should be fine for this point in the rc
cycle due to it being independent.

All of this has been in linux-next for a while with no reported issues.

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

----------------------------------------------------------------
Arnd Bergmann (1):
      staging: lustre: ko2iblnd: check copy_from_iter/copy_to_iter return code

Dan Carpenter (2):
      staging: vchiq_arm: fix error codes in probe
      staging: rtl8188eu: memory leak in rtw_free_cmd_obj()

Hans de Goede (1):
      staging: vboxvideo: Add vboxvideo to drivers/staging

Ian Abbott (1):
      staging: comedi: ni_mio_common: fix AO timer off-by-one regression

Lynn Lei (1):
      staging: sm750fb: fixed a assignment typo

Michael Gugino (1):
      staging: rtl8188eu: add TL-WN722N v2 support

Okash Khawaja (3):
      staging: speakup: safely close tty
      staging: speakup: add functions to register and unregister ldisc
      staging: speakup: safely register and unregister ldisc

Teddy Wang (1):
      staging: sm750fb: avoid conflicting vesafb

 drivers/staging/Kconfig                            |   2 +
 drivers/staging/Makefile                           |   1 +
 drivers/staging/comedi/drivers/ni_mio_common.c     |   3 +-
 .../staging/lustre/lnet/klnds/o2iblnd/o2iblnd_cb.c |  19 +-
 drivers/staging/rtl8188eu/core/rtw_cmd.c           |   2 +-
 drivers/staging/rtl8188eu/os_dep/usb_intf.c        |   1 +
 drivers/staging/sm750fb/ddk750_chip.c              |   2 +-
 drivers/staging/sm750fb/sm750.c                    |  24 +
 drivers/staging/speakup/main.c                     |   2 +
 drivers/staging/speakup/spk_priv.h                 |   2 +
 drivers/staging/speakup/spk_ttyio.c                |  22 +-
 drivers/staging/vboxvideo/Kconfig                  |  12 +
 drivers/staging/vboxvideo/Makefile                 |   7 +
 drivers/staging/vboxvideo/TODO                     |   9 +
 drivers/staging/vboxvideo/hgsmi_base.c             | 246 ++++++
 drivers/staging/vboxvideo/hgsmi_ch_setup.h         |  66 ++
 drivers/staging/vboxvideo/hgsmi_channels.h         |  53 ++
 drivers/staging/vboxvideo/hgsmi_defs.h             |  92 +++
 drivers/staging/vboxvideo/modesetting.c            | 142 ++++
 drivers/staging/vboxvideo/vbox_drv.c               | 286 +++++++
 drivers/staging/vboxvideo/vbox_drv.h               | 296 +++++++
 drivers/staging/vboxvideo/vbox_err.h               |  50 ++
 drivers/staging/vboxvideo/vbox_fb.c                | 412 ++++++++++
 drivers/staging/vboxvideo/vbox_hgsmi.c             | 115 +++
 drivers/staging/vboxvideo/vbox_irq.c               | 197 +++++
 drivers/staging/vboxvideo/vbox_main.c              | 534 +++++++++++++
 drivers/staging/vboxvideo/vbox_mode.c              | 877 +++++++++++++++++++++
 drivers/staging/vboxvideo/vbox_prime.c             |  74 ++
 drivers/staging/vboxvideo/vbox_ttm.c               | 472 +++++++++++
 drivers/staging/vboxvideo/vboxvideo.h              | 491 ++++++++++++
 drivers/staging/vboxvideo/vboxvideo_guest.h        |  95 +++
 drivers/staging/vboxvideo/vboxvideo_vbe.h          |  84 ++
 drivers/staging/vboxvideo/vbva_base.c              | 233 ++++++
 .../vc04_services/interface/vchiq_arm/vchiq_arm.c  |  10 +-
 34 files changed, 4912 insertions(+), 21 deletions(-)
 create mode 100644 drivers/staging/vboxvideo/Kconfig
 create mode 100644 drivers/staging/vboxvideo/Makefile
 create mode 100644 drivers/staging/vboxvideo/TODO
 create mode 100644 drivers/staging/vboxvideo/hgsmi_base.c
 create mode 100644 drivers/staging/vboxvideo/hgsmi_ch_setup.h
 create mode 100644 drivers/staging/vboxvideo/hgsmi_channels.h
 create mode 100644 drivers/staging/vboxvideo/hgsmi_defs.h
 create mode 100644 drivers/staging/vboxvideo/modesetting.c
 create mode 100644 drivers/staging/vboxvideo/vbox_drv.c
 create mode 100644 drivers/staging/vboxvideo/vbox_drv.h
 create mode 100644 drivers/staging/vboxvideo/vbox_err.h
 create mode 100644 drivers/staging/vboxvideo/vbox_fb.c
 create mode 100644 drivers/staging/vboxvideo/vbox_hgsmi.c
 create mode 100644 drivers/staging/vboxvideo/vbox_irq.c
 create mode 100644 drivers/staging/vboxvideo/vbox_main.c
 create mode 100644 drivers/staging/vboxvideo/vbox_mode.c
 create mode 100644 drivers/staging/vboxvideo/vbox_prime.c
 create mode 100644 drivers/staging/vboxvideo/vbox_ttm.c
 create mode 100644 drivers/staging/vboxvideo/vboxvideo.h
 create mode 100644 drivers/staging/vboxvideo/vboxvideo_guest.h
 create mode 100644 drivers/staging/vboxvideo/vboxvideo_vbe.h
 create mode 100644 drivers/staging/vboxvideo/vbva_base.c

                 reply	other threads:[~2017-07-22  9:51 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170722095046.GA5372@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=akpm@linux-foundation.org \
    --cc=devel@linuxdriverproject.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sfr@canb.auug.org.au \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.