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

Pull one more arm-soc bugfix from Olof Johansson:
"Here's a bugfix for orion5x. Without this, PCI doesn't initialize
properly because of too small coherent pool to cover the allocations
needed.

A similar fix has already been done on kirkwood."

* tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc:
ARM: Orion5x: Fix too small coherent pool.

+7
+7
arch/arm/mach-orion5x/common.c
··· 204 204 void __init orion5x_init_early(void) 205 205 { 206 206 orion_time_set_base(TIMER_VIRT_BASE); 207 + 208 + /* 209 + * Some Orion5x devices allocate their coherent buffers from atomic 210 + * context. Increase size of atomic coherent pool to make sure such 211 + * the allocations won't fail. 212 + */ 213 + init_dma_coherent_pool_size(SZ_1M); 207 214 } 208 215 209 216 int orion5x_tclk;