Message ID | 20211121150521.159543-1-frattaroli.nicolas@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | ASoC: rk817: Add module alias for rk817-codec | expand |
On Sun, 21 Nov 2021 16:05:20 +0100, Nicolas Frattaroli wrote: > Without a module alias, autoloading the driver does not occurr > when it is built as a module. > > By adding a module alias, the driver now probes fine automatically > and therefore analog audio output works as it should. > > > [...] Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-linus Thanks! [1/1] ASoC: rk817: Add module alias for rk817-codec commit: 428ee30a05cd1362c8aa86a4c909b0d1c6bc48a4 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
I’m sure it’s okay, but I am out of town and will test this one next Sunday when I get back. Thank you! > On Nov 22, 2021, at 5:59 PM, Mark Brown <broonie@kernel.org> wrote: > > On Sun, 21 Nov 2021 16:05:20 +0100, Nicolas Frattaroli wrote: >> Without a module alias, autoloading the driver does not occurr >> when it is built as a module. >> >> By adding a module alias, the driver now probes fine automatically >> and therefore analog audio output works as it should. >> >> >> [...] > > Applied to > > https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgit.kernel.org%2Fpub%2Fscm%2Flinux%2Fkernel%2Fgit%2Fbroonie%2Fsound.git&data=04%7C01%7C%7C10fc56dea69848ff206b08d9ae142feb%7C84df9e7fe9f640afb435aaaaaaaaaaaa%7C1%7C0%7C637732223989143500%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=h9Ff1gI%2B89ziJH%2B%2BNAdRfRqXNfVzM1RKStD7UN3xK7Y%3D&reserved=0 for-linus > > Thanks! > > [1/1] ASoC: rk817: Add module alias for rk817-codec > commit: 428ee30a05cd1362c8aa86a4c909b0d1c6bc48a4 > > All being well this means that it will be integrated into the linux-next > tree (usually sometime in the next 24 hours) and sent to Linus during > the next merge window (or sooner if it is a bug fix), however if > problems are discovered then the patch may be dropped or reverted. > > You may get further e-mails resulting from automated or manual testing > and review of the tree, please engage with people reporting problems and > send followup patches addressing any issues that are reported if needed. > > If any updates are required or you are submitting further changes they > should be sent as incremental updates against current git, existing > patches will not be replaced. > > Please add any relevant lists and maintainers to the CCs when replying > to this mail. > > Thanks, > Mark
diff --git a/sound/soc/codecs/rk817_codec.c b/sound/soc/codecs/rk817_codec.c index 943d7d933e81..03f24edfe4f6 100644 --- a/sound/soc/codecs/rk817_codec.c +++ b/sound/soc/codecs/rk817_codec.c @@ -539,3 +539,4 @@ module_platform_driver(rk817_codec_driver); MODULE_DESCRIPTION("ASoC RK817 codec driver"); MODULE_AUTHOR("binyuan <kevan.lan@rock-chips.com>"); MODULE_LICENSE("GPL v2"); +MODULE_ALIAS("platform:rk817-codec");
Without a module alias, autoloading the driver does not occurr when it is built as a module. By adding a module alias, the driver now probes fine automatically and therefore analog audio output works as it should. Fixes: 0d6a04da9b25 ("ASoC: Add Rockchip rk817 audio CODEC support") Signed-off-by: Nicolas Frattaroli <frattaroli.nicolas@gmail.com> --- sound/soc/codecs/rk817_codec.c | 1 + 1 file changed, 1 insertion(+)