Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f513581c authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux

Pull clk fixes from Stephen Boyd:
 "Two small fixes for MIPI PLLs on sunxi devices and a build fix for a
  Broadcom clk driver having unmet dependencies"

* tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux:
  clk: bcm: Fix unmet Kconfig dependencies for CLK_BCM_63XX
  clk: sunxi-ng: enable so-said LDOs for A33 SoC's pll-mipi clock
  clk: sunxi-ng: sun6i-a31: Enable PLL-MIPI LDOs when ungating it
parents e2b588ab b7d79eb4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ config CLK_BCM_KONA

config COMMON_CLK_IPROC
	bool "Broadcom iProc clock support"
	depends on ARCH_BCM_IPROC || COMPILE_TEST
	depends on ARCH_BCM_IPROC || ARCH_BCM_63XX || COMPILE_TEST
	depends on COMMON_CLK
	default ARCH_BCM_IPROC
	help
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ static SUNXI_CCU_NKM_WITH_MUX_GATE_LOCK(pll_mipi_clk, "pll-mipi",
					4, 2,	/* K */
					0, 4,	/* M */
					21, 0,	/* mux */
					BIT(31),	/* gate */
					BIT(31) | BIT(23) | BIT(22), /* gate */
					BIT(28),	/* lock */
					CLK_SET_RATE_UNGATE);

+1 −1
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@ static SUNXI_CCU_NKM_WITH_GATE_LOCK(pll_mipi_clk, "pll-mipi",
				    8, 4,		/* N */
				    4, 2,		/* K */
				    0, 4,		/* M */
				    BIT(31),		/* gate */
				    BIT(31) | BIT(23) | BIT(22), /* gate */
				    BIT(28),		/* lock */
				    CLK_SET_RATE_UNGATE);