From: Karl Beldan
Signed-off-by: Karl Beldan
---
lib/lz4_wrapper.c | 15 ---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/lib/lz4_wrapper.c b/lib/lz4_wrapper.c
index e0f7d3688e..cdbcd05bd4 100644
--- a/lib/lz4_wrapper.c
+++ b/lib/lz4_wrapper.c
@@ -11,9 +11,18
Commit 2ee951ba (UBI: Enable re-initializing of the "ubi part" command)
reset mtd_devs in ubi_exit() but missed ubi_init()'s failure path.
Signed-off-by: Karl Beldan
Cc: Stefan Roese
---
drivers/mtd/ubi/build.c |1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff
Signed-off-by: Karl Beldan
---
common/dlmalloc.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/common/dlmalloc.c b/common/dlmalloc.c
index 205fc40..2276532 100644
--- a/common/dlmalloc.c
+++ b/common/dlmalloc.c
@@ -1515,7 +1515,7 @@ void *sbrk(ptrdiff_t increment
I suggest someone apply commit ff99879 from Linux.
Cheers,
--
Karl
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
From: Karl Beldan
Signed-off-by: Karl Beldan
---
tools/mkimage.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/mkimage.c b/tools/mkimage.c
index d993958..3c594a0 100644
--- a/tools/mkimage.c
+++ b/tools/mkimage.c
@@ -140,7 +140,7 @@ static void process_args(int argc
Signed-off-by: Karl Beldan
---
tools/mkimage.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/mkimage.c b/tools/mkimage.c
index d993958..3c594a0 100644
--- a/tools/mkimage.c
+++ b/tools/mkimage.c
@@ -140,7 +140,7 @@ static void process_args(int argc, char **argv
This follows 9fd383724cf4 ("mmc: don't allow extra cmdline arguments"),
and affects omapl138_lcdk and omap3_evm_quick_mmc.
Signed-off-by: Karl Beldan
---
include/configs/omap3_evm_quick_mmc.h | 2 +-
include/configs/omapl138_lcdk.h | 2 +-
2 files changed, 2 insertions(
Inform getopt that '-c' requires a parameter.
Fixes: a02221f29deb ("mkimage: Convert to use getopt()")
Signed-off-by: Karl Beldan
---
tools/mkimage.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/mkimage.c b/tools/mkimage.c
index d993958..3c594a
ATM when receiving a packet the whole buffer is invalidated, this change
optimizes this behaviour.
Signed-off-by: Karl Beldan
---
drivers/net/davinci_emac.c | 12 ++--
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/net/davinci_emac.c b/drivers/net/davinci_emac.c
.
This gets rid of the warnings:
CACHE: Misaligned operation at range
Signed-off-by: Karl Beldan
---
drivers/net/davinci_emac.c | 6 --
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/net/davinci_emac.c b/drivers/net/davinci_emac.c
index 947bfab..55461b0 100644
--- a
: Misaligned operation at range
Signed-off-by: Karl Beldan
---
drivers/net/davinci_emac.c | 28
1 file changed, 28 deletions(-)
diff --git a/drivers/net/davinci_emac.c b/drivers/net/davinci_emac.c
index b030498..947bfab 100644
--- a/drivers/net/davinci_emac.c
+++ b/drivers/net
On Sun, Aug 14, 2016 at 11:47:25AM -0400, Tom Rini wrote:
> On Sun, Aug 14, 2016 at 03:03:16PM +0000, Karl Beldan wrote:
>
> > check_cache_range() warns that the top boundaries are not properly
> > aligned while flushing and invalidating the buffers and make these
> > ope
On Sun, Aug 14, 2016 at 07:43:56PM +, Karl Beldan wrote:
> On Sun, Aug 14, 2016 at 11:47:25AM -0400, Tom Rini wrote:
> > On Sun, Aug 14, 2016 at 03:03:16PM +0000, Karl Beldan wrote:
> >
> > > check_cache_range() warns that the top boundaries are not properly
> >
check_cache_range() warns that the top boundaries are not properly
aligned when flushing or invalidating the buffers and make these
operations fail.
This gets rid of the remaining warnings:
CACHE: Misaligned operation at range
Signed-off-by: Karl Beldan
---
drivers/net/davinci_emac.c | 2 +-
1
ATM when receiving a packet the whole buffer is invalidated, this change
optimizes this behaviour.
Signed-off-by: Karl Beldan
---
drivers/net/davinci_emac.c | 10 +-
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/net/davinci_emac.c b/drivers/net/davinci_emac.c
Changes from v1:
- Prefer dcache_op(base, base + ALIGN(len, PKTALIGN))
to dcache_op(base, round_up(base + len, ARCH_DMA_MINALIGN))
as suggested by Tom and Joe.
- In v2_1/2, explicitly align the top tx buffers only since the rx top
ones are obviously already properly aligned.
Karl
On Mon, Aug 08, 2016 at 11:28:36AM -0500, Joe Hershberger wrote:
>
> This is an effort to migrate closer to the phylib approach so that a
> new DM approach can be developed from a single starting point. The more
> of this legacy code that can be removed, the easier it will be to move
> forward.
>
igned-off-by: Karl Beldan
---
drivers/net/davinci_emac.c | 13 ++---
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/drivers/net/davinci_emac.c b/drivers/net/davinci_emac.c
index ca457b8..3103441 100644
--- a/drivers/net/davinci_emac.c
+++ b/drivers/net/davinci_emac.c
@@ -2
On Fri, Aug 19, 2016 at 01:48:00PM -0500, Joe Hershberger wrote:
> Hi Karl,
>
> On Fri, Aug 19, 2016 at 3:14 AM, Karl Beldan wrote:
> > On Mon, Aug 08, 2016 at 11:28:36AM -0500, Joe Hershberger wrote:
> >>
> >> This is an effort to migrate closer to the phyl
From: Karl Beldan
Remove the ARCH_SUNXI dependency on selection of RBTREE.
Cc: Boris Brezillon
Cc: Maxime Ripard
Cc: Jagan Teki
Signed-off-by: Karl Beldan
---
drivers/mtd/ubi/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/ubi/Kconfig b/drivers/mtd
From: Karl Beldan
Remove the ARCH_SUNXI dependency.
Cc: Maxime Ripard
Cc: Jagan Teki
Signed-off-by: Karl Beldan
---
cmd/Kconfig | 1 -
1 file changed, 1 deletion(-)
diff --git a/cmd/Kconfig b/cmd/Kconfig
index c80ac364ea..87ee2ea613 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1196,7
From: Karl Beldan
Many configs still define CMD_MTDPARTS in their non-Kconfig but
CMD_MTDPARTS has now moved to Kconfig.
Signed-off-by: Karl Beldan
---
cmd/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 87ee2ea613..92576f5734 100644
--- a/cmd
From: Karl Beldan
This missing dependency has probably remained under the radar because
MTD_PARTITIONS is still whitelisted.
Signed-off-by: Karl Beldan
---
drivers/mtd/ubi/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mtd/ubi/Kconfig b/drivers/mtd/ubi/Kconfig
index
From: Karl Beldan
Remove the ARCH_SUNXI and RBTREE dependencies.
CMD_UBIFS already gets RBTREE from CMD_UBI (from MTD_UBI), and should
the first become independant from the latter, there would likely be a
dependency on MTD_UBI anyway.
Cc: Boris Brezillon
Cc: Jagan Teki
Signed-off-by: Karl
mit 082693f4 ("arm64 :show_regs: show the address before relocation")
Signed-off-by: Karl Beldan
---
arch/arm/lib/interrupts_64.c | 13 ++---
1 file changed, 6 insertions(+), 7 deletions(-)
diff --git a/arch/arm/lib/interrupts_64.c b/arch/arm/lib/interrupts_64.c
index cbcfeec2b0..8a
On Tue, Nov 28, 2017 at 10:08:08AM +0800, Peng Fan wrote:
> After relocation, when error happends, it is hard to track
> ELR and LR with asm file objdumped from elf file.
>
> So subtract the gd->reloc_off the reflect the compliation address.
>
> Signed-off-by: Peng Fan
> ---
> arch/arm/lib/inte
On Tue, Jan 23, 2018 at 10:47:11AM +0800, Peng Fan wrote:
> Not only show the calculated value after relocation, also show
> the real hardware register value.
>
> Signed-off-by: Peng Fan
> Reported-by: Karl Beldan
> ---
> arch/arm/lib/interrupts_64.c | 11 ++-
On Sun, Feb 4, 2018 at 1:39 PM, Simon Glass wrote:
> Hi,
>
> On 22 January 2018 at 12:01, Karl Beldan wrote:
>>
>> On Tue, Nov 28, 2017 at 10:08:08AM +0800, Peng Fan wrote:
>> > After relocation, when error happends, it is hard to track
>> > ELR and L
28 matches
Mail list logo