Re: [U-Boot] [ PATCH 1/2] net: fix cache misaligned issue in Broadcom SF2 driver

2017-03-21 Thread Joe Hershberger
On Fri, Mar 3, 2017 at 7:06 PM, Steve Rae wrote: > From: Suji Velupillai > > Fixed cache misaligned issue in the net driver. The issue shows-up when > a call to flush_dcache_range is made with unaligned memory. The memory > must be aligned to ARCH_DMA_MINALIGN. > > Signed-off-by: Suji Velupillai

Re: [U-Boot] [ PATCH 1/2] net: fix cache misaligned issue in Broadcom SF2 driver

2017-03-03 Thread Steve Rae
On Fri, Mar 3, 2017 at 5:06 PM, Steve Rae wrote: > From: Suji Velupillai > > Fixed cache misaligned issue in the net driver. The issue shows-up when > a call to flush_dcache_range is made with unaligned memory. The memory > must be aligned to ARCH_DMA_MINALIGN. > > Signed-off-by: Suji Velupillai

[U-Boot] [ PATCH 1/2] net: fix cache misaligned issue in Broadcom SF2 driver

2017-03-03 Thread Steve Rae
From: Suji Velupillai Fixed cache misaligned issue in the net driver. The issue shows-up when a call to flush_dcache_range is made with unaligned memory. The memory must be aligned to ARCH_DMA_MINALIGN. Signed-off-by: Suji Velupillai Tested-by: Suji Velupillai Reviewed-by: Arun Parameswaran R