All of lore.kernel.org
 help / color / mirror / Atom feed
From: Aidan MacDonald <aidanmacdonald.0x0@gmail.com>
To: paul@crapouillou.net, lgirdwood@gmail.com, broonie@kernel.org,
	robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
	tsbogend@alpha.franken.de, perex@perex.cz, tiwai@suse.com
Cc: alsa-devel@alsa-project.org, linux-mips@vger.kernel.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH v1 0/3] ASoC: jz4740-i2s: Remove .set_sysclk() & friends
Date: Fri, 28 Oct 2022 11:34:15 +0100	[thread overview]
Message-ID: <20221028103418.17578-1-aidanmacdonald.0x0@gmail.com> (raw)

A quick series to get rid of .set_sysclk() from jz4740-i2s.
It wasn't used in practice so this shouldn't be troublesome for anyone,
and fortunately there aren't any backward compatibility concerns.

The actual rationale for removing it, as opposed to fixing the
issues of the current DT bindings and implementation, is provided
in the dt-bindings patch.

Note the last patch only applies cleanly on top of my earlier
jz4740-i2s cleanup series, but doesn't strictly depend on it.

Link: https://lore.kernel.org/alsa-devel/20221023143328.160866-1-aidanmacdonald.0x0@gmail.com/

Aidan MacDonald (3):
  dt-bindings: ingenic,aic: Remove unnecessary clocks from schema
  mips: dts: ingenic: Remove unnecessary AIC clocks
  ASoC: jz4740-i2s: Remove .set_sysclk()

 .../bindings/sound/ingenic,aic.yaml           | 10 ++----
 arch/mips/boot/dts/ingenic/jz4725b.dtsi       |  7 ++--
 arch/mips/boot/dts/ingenic/jz4740.dtsi        |  7 ++--
 arch/mips/boot/dts/ingenic/jz4770.dtsi        |  5 ++-
 sound/soc/jz4740/jz4740-i2s.c                 | 32 -------------------
 sound/soc/jz4740/jz4740-i2s.h                 | 10 ------
 6 files changed, 8 insertions(+), 63 deletions(-)
 delete mode 100644 sound/soc/jz4740/jz4740-i2s.h

-- 
2.38.1


WARNING: multiple messages have this Message-ID (diff)
From: Aidan MacDonald <aidanmacdonald.0x0@gmail.com>
To: paul@crapouillou.net, lgirdwood@gmail.com, broonie@kernel.org,
	robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
	tsbogend@alpha.franken.de, perex@perex.cz, tiwai@suse.com
Cc: devicetree@vger.kernel.org, alsa-devel@alsa-project.org,
	linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH v1 0/3] ASoC: jz4740-i2s: Remove .set_sysclk() & friends
Date: Fri, 28 Oct 2022 11:34:15 +0100	[thread overview]
Message-ID: <20221028103418.17578-1-aidanmacdonald.0x0@gmail.com> (raw)

A quick series to get rid of .set_sysclk() from jz4740-i2s.
It wasn't used in practice so this shouldn't be troublesome for anyone,
and fortunately there aren't any backward compatibility concerns.

The actual rationale for removing it, as opposed to fixing the
issues of the current DT bindings and implementation, is provided
in the dt-bindings patch.

Note the last patch only applies cleanly on top of my earlier
jz4740-i2s cleanup series, but doesn't strictly depend on it.

Link: https://lore.kernel.org/alsa-devel/20221023143328.160866-1-aidanmacdonald.0x0@gmail.com/

Aidan MacDonald (3):
  dt-bindings: ingenic,aic: Remove unnecessary clocks from schema
  mips: dts: ingenic: Remove unnecessary AIC clocks
  ASoC: jz4740-i2s: Remove .set_sysclk()

 .../bindings/sound/ingenic,aic.yaml           | 10 ++----
 arch/mips/boot/dts/ingenic/jz4725b.dtsi       |  7 ++--
 arch/mips/boot/dts/ingenic/jz4740.dtsi        |  7 ++--
 arch/mips/boot/dts/ingenic/jz4770.dtsi        |  5 ++-
 sound/soc/jz4740/jz4740-i2s.c                 | 32 -------------------
 sound/soc/jz4740/jz4740-i2s.h                 | 10 ------
 6 files changed, 8 insertions(+), 63 deletions(-)
 delete mode 100644 sound/soc/jz4740/jz4740-i2s.h

-- 
2.38.1


             reply	other threads:[~2022-10-28 10:34 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-28 10:34 Aidan MacDonald [this message]
2022-10-28 10:34 ` [PATCH v1 0/3] ASoC: jz4740-i2s: Remove .set_sysclk() & friends Aidan MacDonald
2022-10-28 10:34 ` [PATCH v1 1/3] dt-bindings: ingenic,aic: Remove unnecessary clocks from schema Aidan MacDonald
2022-10-28 10:34   ` [PATCH v1 1/3] dt-bindings: ingenic, aic: " Aidan MacDonald
2022-10-30 11:56   ` [PATCH v1 1/3] dt-bindings: ingenic,aic: " Paul Cercueil
2022-10-30 11:56     ` Paul Cercueil
2022-10-31 12:15   ` Mark Brown
2022-10-31 12:15     ` Mark Brown
2022-10-31 18:46   ` Rob Herring
2022-10-31 18:46     ` Rob Herring
2022-10-28 10:34 ` [PATCH v1 2/3] mips: dts: ingenic: Remove unnecessary AIC clocks Aidan MacDonald
2022-10-28 10:34   ` Aidan MacDonald
2022-10-28 10:34 ` [PATCH v1 3/3] ASoC: jz4740-i2s: Remove .set_sysclk() Aidan MacDonald
2022-10-28 10:34   ` Aidan MacDonald
2022-10-30 11:58   ` Paul Cercueil
2022-10-30 11:58     ` Paul Cercueil
2022-10-31 18:59 ` (subset) [PATCH v1 0/3] ASoC: jz4740-i2s: Remove .set_sysclk() & friends Mark Brown
2022-10-31 18:59   ` Mark Brown

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=20221028103418.17578-1-aidanmacdonald.0x0@gmail.com \
    --to=aidanmacdonald.0x0@gmail.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=paul@crapouillou.net \
    --cc=perex@perex.cz \
    --cc=robh+dt@kernel.org \
    --cc=tiwai@suse.com \
    --cc=tsbogend@alpha.franken.de \
    /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.