Re: [PATCH] fdt_support.c: Allow late kernel cmdline modification

2021-03-10 Thread Niko Mauno
On 2/25/21 6:09 PM, Niko Mauno wrote: On 2/24/21 3:51 PM, Tom Rini wrote: On Tue, Feb 23, 2021 at 08:33:36AM +0200, Niko Mauno wrote: On 2/22/21 10:21 PM, Tom Rini wrote: On Mon, Feb 22, 2021 at 07:18:51PM +, Niko Mauno wrote: By declaring board-specific board_fdt_chosen_bootargs

Re: [PATCH] fdt_support.c: Allow late kernel cmdline modification

2021-02-25 Thread Niko Mauno
On 2/24/21 3:51 PM, Tom Rini wrote: On Tue, Feb 23, 2021 at 08:33:36AM +0200, Niko Mauno wrote: On 2/22/21 10:21 PM, Tom Rini wrote: On Mon, Feb 22, 2021 at 07:18:51PM +, Niko Mauno wrote: By declaring board-specific board_fdt_chosen_bootargs() the kernel command line arguments can

Re: [PATCH] fdt_support.c: Allow late kernel cmdline modification

2021-02-22 Thread Niko Mauno
On 2/22/21 10:21 PM, Tom Rini wrote: On Mon, Feb 22, 2021 at 07:18:51PM +, Niko Mauno wrote: By declaring board-specific board_fdt_chosen_bootargs() the kernel command line arguments can be adjusted before injecting to flat dt chosen node. Signed-off-by: Niko Mauno --- common

[PATCH] fdt_support.c: Allow late kernel cmdline modification

2021-02-22 Thread Niko Mauno
By declaring board-specific board_fdt_chosen_bootargs() the kernel command line arguments can be adjusted before injecting to flat dt chosen node. Signed-off-by: Niko Mauno --- common/fdt_support.c | 12 +++- include/fdt_support.h | 10 ++ 2 files changed, 21 insertions(+), 1

[U-Boot] [PATCH] video/da8xx-fb: Cache-align memory allocations

2017-10-27 Thread Niko Mauno
Resort to malloc_cache_aligned() rather than malloc() which also removes 'CACHE: Misaligned operation at range' warnings. Signed-off-by: Niko Mauno <niko.ma...@vaisala.com> --- drivers/video/da8xx-fb.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers