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-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux

Pull clk fix from Stephen Boyd:
"One more fix for the merge window to avoid a boot hang on
Raspberry Pi 3B by marking the VEC clk critical so that it
doesn't get turned off and hang the bus"

* tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux:
clk: bcm: rpi: Mark VEC clock as CLK_IGNORE_UNUSED

+7
+7
drivers/clk/bcm/clk-raspberrypi.c
··· 160 160 [RPI_FIRMWARE_VEC_CLK_ID] = { 161 161 .export = true, 162 162 .minimize = true, 163 + 164 + /* 165 + * If this clock is disabled during boot, it causes a bus 166 + * lockup in RPi 3B. Therefore, make sure it's left enabled 167 + * during boot. 168 + */ 169 + .flags = CLK_IGNORE_UNUSED, 163 170 }, 164 171 [RPI_FIRMWARE_DISP_CLK_ID] = { 165 172 .export = true,