mbox series

[0/5] SOC Codecs: TLV320AIC3X add SPI support

Message ID 20210406105018.59463-1-jiri.prchal@aksignal.cz (mailing list archive)
Headers show
Series SOC Codecs: TLV320AIC3X add SPI support | expand

Message

Jiri Prchal April 6, 2021, 10:50 a.m. UTC
This patches add support of SPI to TLV320AIC3X codecs.

Jiri Prchal (5):
  SOC Codecs: TLV320AIC3X add SPI: move thinks to header file
  SOC Codecs: TLV320AIC3X add SPI: main source code for I2C and SPI
  SOC Codecs: TLV320AIC3X add SPI: I2C code
  SOC Codecs: TLV320AIC3X add SPI: SPI code
  SOC Codecs: TLV320AIC3X add SPI: configuration and compile

 sound/soc/codecs/Kconfig           |  11 +++
 sound/soc/codecs/Makefile          |   4 ++
 sound/soc/codecs/tlv320aic3x-i2c.c |  72 ++++++++++++++++++++
 sound/soc/codecs/tlv320aic3x-spi.c |  77 +++++++++++++++++++++
 sound/soc/codecs/tlv320aic3x.c     | 105 ++++++++---------------------
 sound/soc/codecs/tlv320aic3x.h     |  13 ++++
 6 files changed, 204 insertions(+), 78 deletions(-)
 create mode 100644 sound/soc/codecs/tlv320aic3x-i2c.c
 create mode 100644 sound/soc/codecs/tlv320aic3x-spi.c

Comments

Mark Brown April 6, 2021, 11:56 a.m. UTC | #1
On Tue, Apr 06, 2021 at 12:50:13PM +0200, Jiri Prchal wrote:
> This patches add support of SPI to TLV320AIC3X codecs.
> 
> Jiri Prchal (5):
>   SOC Codecs: TLV320AIC3X add SPI: move thinks to header file
>   SOC Codecs: TLV320AIC3X add SPI: main source code for I2C and SPI
>   SOC Codecs: TLV320AIC3X add SPI: I2C code
>   SOC Codecs: TLV320AIC3X add SPI: SPI code
>   SOC Codecs: TLV320AIC3X add SPI: configuration and compile

Please submit patches using subject lines reflecting the style for the
subsystem, this makes it easier for people to identify relevant patches.
Look at what existing commits in the area you're changing are doing and
make sure your subject lines visually resemble what they're doing.
There's no need to resubmit to fix this alone.