lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1408018287-14217-3-git-send-email-tomeu.vizoso@collabora.com> Date: Thu, 14 Aug 2014 14:11:24 +0200 From: Tomeu Vizoso <tomeu.vizoso@...labora.com> To: Mike Turquette <mturquette@...aro.org> Cc: Stephen Warren <swarren@...dotorg.org>, Thierry Reding <thierry.reding@...il.com>, Tomasz Figa <t.figa@...sung.com>, Peter De Schrijver <pdeschrijver@...dia.com>, rabin@....in, linux-kernel@...r.kernel.org, linux-arm-kernel@...ts.infradead.org, Javier Martinez Canillas <javier.martinez@...labora.co.uk>, Tomeu Vizoso <tomeu.vizoso@...labora.com> Subject: [PATCH v6 2/6] ASoC: mxs-saif: fix mixed use of public and provider clk API In preparation to changing the clk provider API to use struct clk_core instead of struct clk. Signed-off-by: Tomeu Vizoso <tomeu.vizoso@...labora.com> Acked-by: Mark Brown <broonie@...aro.org> --- sound/soc/mxs/mxs-saif.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/soc/mxs/mxs-saif.c b/sound/soc/mxs/mxs-saif.c index 231d7e7..a24367d 100644 --- a/sound/soc/mxs/mxs-saif.c +++ b/sound/soc/mxs/mxs-saif.c @@ -682,11 +682,11 @@ static int mxs_saif_mclk_init(struct platform_device *pdev) { struct mxs_saif *saif = platform_get_drvdata(pdev); struct device_node *np = pdev->dev.of_node; - struct clk *clk; + struct clk_core *clk; int ret; clk = clk_register_divider(&pdev->dev, "mxs_saif_mclk", - __clk_get_name(saif->clk), 0, + clk_get_name(saif->clk), 0, saif->base + SAIF_CTRL, BP_SAIF_CTRL_BITCLK_MULT_RATE, 3, 0, NULL); -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists