All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/28] staging: most: fix issues
@ 2018-05-08  9:44 Christian Gromm
  2018-05-08  9:44 ` [PATCH 01/28] staging: most: allocate only all requested memory Christian Gromm
                   ` (27 more replies)
  0 siblings, 28 replies; 39+ messages in thread
From: Christian Gromm @ 2018-05-08  9:44 UTC (permalink / raw)
  To: gregkh; +Cc: Christian Gromm, driverdev-devel

This patch set is needed to fix open issues of the MOST driver.

Christian Gromm (28):
  staging: most: allocate only all requested memory
  staging: most: dim2: remove clock speed processing from the HDM
  staging: most: i2c: prevent division by zero
  staging: most: i2c: remove unnecessary poison_channel call
  staging: most: add channel property dbr_size
  staging: most: aim-sound: add flexible format support
  staging: most: i2c: shorten lifetime of IRQ handler
  staging: most: i2c: do not wait in work function
  staging: most: i2c: avoid polling in case of misconfig
  staging: most: i2c: prevent zero delay polling
  staging: most: i2c: trace real polling rate
  staging: most: i2c: remove redundant is_open
  staging: most: i2c: remove redundant list_mutex
  staging: most: i2c: reduce parameters inconsistency
  staging: most: make interface drivers allocate coherent memory
  staging: most: sound: call snd_card_new with struct device
  staging: most: cdev: avoid warning about potentially uninitialized
    variable
  staging: most: cdev: fix chrdev_region leak
  staging: most: usb: add ep number to log
  staging: most: cdev: fix function return value
  staging: most: dim2: fix startup sequence
  staging: most: cdev: fix race condition
  staging: most: dim2: use device tree
  staging: most: dim2: read clock speed from the device
  staging: most: dim2: use device to allocate coherent memory
  staging: most: usb: don't set URB_ZERO_PACKET flag for synchronous
    data
  staging: most: usb: fix usb_disconnect race condition
  staging: most: usb: remove local variable

 drivers/staging/most/cdev/cdev.c   |  16 +-
 drivers/staging/most/core.c        |  68 +++++--
 drivers/staging/most/core.h        |   4 +
 drivers/staging/most/dim2/Kconfig  |   2 +-
 drivers/staging/most/dim2/dim2.c   | 397 +++++++++++++++++++++++++++----------
 drivers/staging/most/dim2/dim2.h   |  21 --
 drivers/staging/most/dim2/hal.c    |   9 +-
 drivers/staging/most/i2c/i2c.c     | 140 +++++--------
 drivers/staging/most/sound/sound.c | 123 ++++++------
 drivers/staging/most/usb/usb.c     |  55 +++--
 10 files changed, 519 insertions(+), 316 deletions(-)
 delete mode 100644 drivers/staging/most/dim2/dim2.h

-- 
2.7.4

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

^ permalink raw reply	[flat|nested] 39+ messages in thread

end of thread, other threads:[~2021-10-13 12:24 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-08  9:44 [PATCH 00/28] staging: most: fix issues Christian Gromm
2018-05-08  9:44 ` [PATCH 01/28] staging: most: allocate only all requested memory Christian Gromm
2018-05-09 13:19   ` Dan Carpenter
2018-05-09 14:09     ` Christian Gromm
2018-05-09 14:54       ` Dan Carpenter
2018-05-09 15:18         ` Christian Gromm
2018-05-09 15:29           ` Greg KH
2018-05-11  7:36             ` Christian Gromm
2018-05-08  9:44 ` [PATCH 02/28] staging: most: dim2: remove clock speed processing from the HDM Christian Gromm
2018-05-08  9:44 ` [PATCH 03/28] staging: most: i2c: prevent division by zero Christian Gromm
2018-05-08  9:44 ` [PATCH 04/28] staging: most: i2c: remove unnecessary poison_channel call Christian Gromm
2018-05-08  9:44 ` [PATCH 05/28] staging: most: add channel property dbr_size Christian Gromm
2018-05-08  9:44 ` [PATCH 06/28] staging: most: aim-sound: add flexible format support Christian Gromm
2018-05-08  9:44 ` [PATCH 07/28] staging: most: i2c: shorten lifetime of IRQ handler Christian Gromm
2018-05-08  9:44 ` [PATCH 08/28] staging: most: i2c: do not wait in work function Christian Gromm
2018-05-08  9:44 ` [PATCH 09/28] staging: most: i2c: avoid polling in case of misconfig Christian Gromm
2018-05-09 13:46   ` Dan Carpenter
2018-05-09 14:20     ` Christian Gromm
2018-05-08  9:44 ` [PATCH 10/28] staging: most: i2c: prevent zero delay polling Christian Gromm
2018-05-08  9:44 ` [PATCH 11/28] staging: most: i2c: trace real polling rate Christian Gromm
2018-05-08  9:45 ` [PATCH 12/28] staging: most: i2c: remove redundant is_open Christian Gromm
2018-05-08  9:45 ` [PATCH 13/28] staging: most: i2c: remove redundant list_mutex Christian Gromm
2018-05-08  9:45 ` [PATCH 14/28] staging: most: i2c: reduce parameters inconsistency Christian Gromm
2018-05-08  9:45 ` [PATCH 15/28] staging: most: make interface drivers allocate coherent memory Christian Gromm
2018-05-08  9:45 ` [PATCH 16/28] staging: most: sound: call snd_card_new with struct device Christian Gromm
2018-05-08  9:45 ` [PATCH 17/28] staging: most: cdev: avoid warning about potentially uninitialized variable Christian Gromm
2018-05-08  9:45 ` [PATCH 18/28] staging: most: cdev: fix chrdev_region leak Christian Gromm
2018-05-08  9:45 ` [PATCH 19/28] staging: most: usb: add ep number to log Christian Gromm
2018-05-08  9:45 ` [PATCH 20/28] staging: most: cdev: fix function return value Christian Gromm
2018-05-08  9:45 ` [PATCH 21/28] staging: most: dim2: fix startup sequence Christian Gromm
2018-05-08  9:45 ` [PATCH 22/28] staging: most: cdev: fix race condition Christian Gromm
2018-05-08  9:45 ` [PATCH 23/28] staging: most: dim2: use device tree Christian Gromm
2021-10-12 18:14   ` Geert Uytterhoeven
2021-10-13 12:24     ` Greg KH
2018-05-08  9:45 ` [PATCH 24/28] staging: most: dim2: read clock speed from the device Christian Gromm
2018-05-08  9:45 ` [PATCH 25/28] staging: most: dim2: use device to allocate coherent memory Christian Gromm
2018-05-08  9:45 ` [PATCH 26/28] staging: most: usb: don't set URB_ZERO_PACKET flag for synchronous data Christian Gromm
2018-05-08  9:45 ` [PATCH 27/28] staging: most: usb: fix usb_disconnect race condition Christian Gromm
2018-05-08  9:45 ` [PATCH 28/28] staging: most: usb: remove local variable Christian Gromm

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.