Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 clk driver build fixes

- Remove __packed from a Renesas struct to improve portability

- Fix a linking problem with i.MX when config options don't agree"

* tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux:
clk: renesas: r9a06g032: Drop __packed for portability
clk: imx: scu: fix MXC_CLK_SCU module build break

+3 -3
+2 -2
drivers/clk/imx/Kconfig
··· 5 5 depends on ARCH_MXC || COMPILE_TEST 6 6 7 7 config MXC_CLK_SCU 8 - tristate "IMX SCU clock" 9 - depends on ARCH_MXC || COMPILE_TEST 8 + tristate 9 + depends on ARCH_MXC 10 10 depends on IMX_SCU && HAVE_ARM_SMCCC 11 11 12 12 config CLK_IMX1
+1 -1
drivers/clk/renesas/r9a06g032-clocks.c
··· 55 55 u16 sel, g1, r1, g2, r2; 56 56 } dual; 57 57 }; 58 - } __packed; 58 + }; 59 59 60 60 #define I_GATE(_clk, _rst, _rdy, _midle, _scon, _mirack, _mistat) \ 61 61 { .gate = _clk, .reset = _rst, \