* [GIT PULL] soundwire updates for v5.8-rc1
@ 2020-05-21 14:27 ` Vinod Koul
0 siblings, 0 replies; 4+ messages in thread
From: Vinod Koul @ 2020-05-21 14:27 UTC (permalink / raw)
To: Greg KH; +Cc: alsa-devel, LKML
[-- Attachment #1: Type: text/plain, Size: 4225 bytes --]
Hi Greg,
Please pull to receive updates for soundwire. The big news the
sdw_master_device getting completed along with sysfs attributes for
master and slave devices. That closes the long cleanup work done by
Pierre and Bard for the devices.
The following changes since commit 8f3d9f354286745c751374f5f1fcafee6b3f3136:
Linux 5.7-rc1 (2020-04-12 12:35:55 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git tags/soundwire-5.8-rc1
for you to fetch changes up to fcbcf1f7b56855ffe1cec768cb1013c5a4c854c3:
soundwire: intel: use a single module (2020-05-20 19:24:55 +0530)
----------------------------------------------------------------
soundwire updates for v5.8-rc1
This contains sdw_master_device patches and other updates done by Intel
folks.
Details:
- sdw_master_device to represent the master instances.
- sysfs properties for sdw_master_device and sdw_slave.
- Documentation update for TDM modes.
- some code cleanup patches and odd updates.
----------------------------------------------------------------
Bard Liao (2):
soundwire: bus: add unique bus id
soundwire: master: add runtime pm support
Guennadi Liakhovetski (2):
soundwire: (cosmetic) remove multiple superfluous "else" statements
soundwire: intel: (cosmetic) remove multiple superfluous "else" statements
Kuninori Morimoto (1):
soundwire: intel: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer
Pierre-Louis Bossart (11):
soundwire: qcom: fix error handling in probe
Documentation: SoundWire: clarify TDM mode support
soundwire: slave: don't init debugfs on device registration error
soundwire: debugfs: clarify SDPX license with GPL-2.0-only
soundwire: bus: reduce verbosity on enumeration
soundwire: bus: rename sdw_bus_master_add/delete, add arguments
soundwire: bus_type: introduce sdw_slave_type and sdw_master_type
soundwire: bus_type: add sdw_master_device support
soundwire: disco: s/ch/channels/
soundwire: master: add sysfs support
soundwire: add Slave sysfs support
Rander Wang (1):
soundwire: intel: use a single module
Samuel Zou (1):
soundwire: qcom: Use IRQF_ONESHOT
Vinod Koul (2):
soundwire: fix trailing line in sysfs_slave.c
soundwire: fix spelling mistake
.../ABI/testing/sysfs-bus-soundwire-master | 23 ++
.../ABI/testing/sysfs-bus-soundwire-slave | 91 +++++++
Documentation/driver-api/soundwire/stream.rst | 89 +++++-
Documentation/driver-api/soundwire/summary.rst | 7 +-
drivers/soundwire/Makefile | 8 +-
drivers/soundwire/bus.c | 71 +++--
drivers/soundwire/bus.h | 4 +
drivers/soundwire/bus_type.c | 22 +-
drivers/soundwire/cadence_master.c | 8 +-
drivers/soundwire/debugfs.c | 2 +-
drivers/soundwire/intel.c | 13 +-
drivers/soundwire/intel_init.c | 4 +-
drivers/soundwire/master.c | 172 ++++++++++++
drivers/soundwire/mipi_disco.c | 11 +-
drivers/soundwire/qcom.c | 34 ++-
drivers/soundwire/slave.c | 10 +-
drivers/soundwire/sysfs_local.h | 14 +
drivers/soundwire/sysfs_slave.c | 214 +++++++++++++++
drivers/soundwire/sysfs_slave_dpn.c | 300 +++++++++++++++++++++
include/linux/soundwire/sdw.h | 32 ++-
include/linux/soundwire/sdw_type.h | 9 +-
21 files changed, 1066 insertions(+), 72 deletions(-)
create mode 100644 Documentation/ABI/testing/sysfs-bus-soundwire-master
create mode 100644 Documentation/ABI/testing/sysfs-bus-soundwire-slave
create mode 100644 drivers/soundwire/master.c
create mode 100644 drivers/soundwire/sysfs_local.h
create mode 100644 drivers/soundwire/sysfs_slave.c
create mode 100644 drivers/soundwire/sysfs_slave_dpn.c
--
~Vinod
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [GIT PULL] soundwire updates for v5.8-rc1
@ 2020-05-21 14:27 ` Vinod Koul
0 siblings, 0 replies; 4+ messages in thread
From: Vinod Koul @ 2020-05-21 14:27 UTC (permalink / raw)
To: Greg KH; +Cc: LKML, alsa-devel
[-- Attachment #1: Type: text/plain, Size: 4225 bytes --]
Hi Greg,
Please pull to receive updates for soundwire. The big news the
sdw_master_device getting completed along with sysfs attributes for
master and slave devices. That closes the long cleanup work done by
Pierre and Bard for the devices.
The following changes since commit 8f3d9f354286745c751374f5f1fcafee6b3f3136:
Linux 5.7-rc1 (2020-04-12 12:35:55 -0700)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git tags/soundwire-5.8-rc1
for you to fetch changes up to fcbcf1f7b56855ffe1cec768cb1013c5a4c854c3:
soundwire: intel: use a single module (2020-05-20 19:24:55 +0530)
----------------------------------------------------------------
soundwire updates for v5.8-rc1
This contains sdw_master_device patches and other updates done by Intel
folks.
Details:
- sdw_master_device to represent the master instances.
- sysfs properties for sdw_master_device and sdw_slave.
- Documentation update for TDM modes.
- some code cleanup patches and odd updates.
----------------------------------------------------------------
Bard Liao (2):
soundwire: bus: add unique bus id
soundwire: master: add runtime pm support
Guennadi Liakhovetski (2):
soundwire: (cosmetic) remove multiple superfluous "else" statements
soundwire: intel: (cosmetic) remove multiple superfluous "else" statements
Kuninori Morimoto (1):
soundwire: intel: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer
Pierre-Louis Bossart (11):
soundwire: qcom: fix error handling in probe
Documentation: SoundWire: clarify TDM mode support
soundwire: slave: don't init debugfs on device registration error
soundwire: debugfs: clarify SDPX license with GPL-2.0-only
soundwire: bus: reduce verbosity on enumeration
soundwire: bus: rename sdw_bus_master_add/delete, add arguments
soundwire: bus_type: introduce sdw_slave_type and sdw_master_type
soundwire: bus_type: add sdw_master_device support
soundwire: disco: s/ch/channels/
soundwire: master: add sysfs support
soundwire: add Slave sysfs support
Rander Wang (1):
soundwire: intel: use a single module
Samuel Zou (1):
soundwire: qcom: Use IRQF_ONESHOT
Vinod Koul (2):
soundwire: fix trailing line in sysfs_slave.c
soundwire: fix spelling mistake
.../ABI/testing/sysfs-bus-soundwire-master | 23 ++
.../ABI/testing/sysfs-bus-soundwire-slave | 91 +++++++
Documentation/driver-api/soundwire/stream.rst | 89 +++++-
Documentation/driver-api/soundwire/summary.rst | 7 +-
drivers/soundwire/Makefile | 8 +-
drivers/soundwire/bus.c | 71 +++--
drivers/soundwire/bus.h | 4 +
drivers/soundwire/bus_type.c | 22 +-
drivers/soundwire/cadence_master.c | 8 +-
drivers/soundwire/debugfs.c | 2 +-
drivers/soundwire/intel.c | 13 +-
drivers/soundwire/intel_init.c | 4 +-
drivers/soundwire/master.c | 172 ++++++++++++
drivers/soundwire/mipi_disco.c | 11 +-
drivers/soundwire/qcom.c | 34 ++-
drivers/soundwire/slave.c | 10 +-
drivers/soundwire/sysfs_local.h | 14 +
drivers/soundwire/sysfs_slave.c | 214 +++++++++++++++
drivers/soundwire/sysfs_slave_dpn.c | 300 +++++++++++++++++++++
include/linux/soundwire/sdw.h | 32 ++-
include/linux/soundwire/sdw_type.h | 9 +-
21 files changed, 1066 insertions(+), 72 deletions(-)
create mode 100644 Documentation/ABI/testing/sysfs-bus-soundwire-master
create mode 100644 Documentation/ABI/testing/sysfs-bus-soundwire-slave
create mode 100644 drivers/soundwire/master.c
create mode 100644 drivers/soundwire/sysfs_local.h
create mode 100644 drivers/soundwire/sysfs_slave.c
create mode 100644 drivers/soundwire/sysfs_slave_dpn.c
--
~Vinod
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] soundwire updates for v5.8-rc1
2020-05-21 14:27 ` Vinod Koul
@ 2020-05-22 7:27 ` Greg KH
-1 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2020-05-22 7:27 UTC (permalink / raw)
To: Vinod Koul; +Cc: alsa-devel, LKML
On Thu, May 21, 2020 at 07:57:39PM +0530, Vinod Koul wrote:
> Hi Greg,
>
> Please pull to receive updates for soundwire. The big news the
> sdw_master_device getting completed along with sysfs attributes for
> master and slave devices. That closes the long cleanup work done by
> Pierre and Bard for the devices.
>
> The following changes since commit 8f3d9f354286745c751374f5f1fcafee6b3f3136:
>
> Linux 5.7-rc1 (2020-04-12 12:35:55 -0700)
>
> are available in the Git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git tags/soundwire-5.8-rc1
Pulled and pushed out, thanks.
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] soundwire updates for v5.8-rc1
@ 2020-05-22 7:27 ` Greg KH
0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2020-05-22 7:27 UTC (permalink / raw)
To: Vinod Koul; +Cc: LKML, alsa-devel
On Thu, May 21, 2020 at 07:57:39PM +0530, Vinod Koul wrote:
> Hi Greg,
>
> Please pull to receive updates for soundwire. The big news the
> sdw_master_device getting completed along with sysfs attributes for
> master and slave devices. That closes the long cleanup work done by
> Pierre and Bard for the devices.
>
> The following changes since commit 8f3d9f354286745c751374f5f1fcafee6b3f3136:
>
> Linux 5.7-rc1 (2020-04-12 12:35:55 -0700)
>
> are available in the Git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git tags/soundwire-5.8-rc1
Pulled and pushed out, thanks.
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-05-22 7:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-21 14:27 [GIT PULL] soundwire updates for v5.8-rc1 Vinod Koul
2020-05-21 14:27 ` Vinod Koul
2020-05-22 7:27 ` Greg KH
2020-05-22 7:27 ` Greg KH
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.