Skip to content

Commit c1cea11

Browse files
committed
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
2 parents 059fe82 + ceabbf9 commit c1cea11

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

drivers/clk/imx/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ config MXC_CLK
55
depends on ARCH_MXC || COMPILE_TEST
66

77
config MXC_CLK_SCU
8-
tristate "IMX SCU clock"
9-
depends on ARCH_MXC || COMPILE_TEST
8+
tristate
9+
depends on ARCH_MXC
1010
depends on IMX_SCU && HAVE_ARM_SMCCC
1111

1212
config CLK_IMX1

drivers/clk/renesas/r9a06g032-clocks.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ struct r9a06g032_clkdesc {
5555
u16 sel, g1, r1, g2, r2;
5656
} dual;
5757
};
58-
} __packed;
58+
};
5959

6060
#define I_GATE(_clk, _rst, _rdy, _midle, _scon, _mirack, _mistat) \
6161
{ .gate = _clk, .reset = _rst, \

0 commit comments

Comments
 (0)