phytec-som-imx6: DCD setup: PLL reduction and video core settings

2016-02-19 Thread Andreas Pretzsch
While looking into a maybe boarderline RAM setup on one specific piece of hardware, I took a closer look at the i.MX6 DDR setup of the Phytec i.MX6 modules in barebox. And came across two things that look ... somewhat questionable, maybe worth a look. In the very first setup (the DCD) in

Re: [PATCH 1/3] Fix return check of dev_request_mem_region

2016-02-19 Thread Andrey Smirnov
On Fri, Feb 19, 2016 at 12:29 AM, Sascha Hauer wrote: > On Thu, Feb 18, 2016 at 04:58:49PM -0800, Andrey Smirnov wrote: >> On Thu, Feb 18, 2016 at 2:50 AM, Sascha Hauer wrote: >> > dev_request_mem_region returns an ERR_PTR, fix places which check

Re: [PATCH 15/18] [RFC] net: eth: Always use DEVICE_ID_DYNAMIC

2016-02-19 Thread Andrey Smirnov
On Thu, Feb 18, 2016 at 11:30 AM, Trent Piepho wrote: > On Tue, 2016-02-16 at 20:16 -0800, Andrey Smirnov wrote: >> >> This patch solves the problem by forcing all Ethernet adapters to >> >> use dynamic ID allocation. >> > >> > A lot of systems depend on aliases/ethernet0

[PATCH v3 3/3] fs: add support for SquashFS 4.0

2016-02-19 Thread yegorslists
From: Yegor Yefremov The driver was imported from Linux 4.4. Current implementation supports only XZ decompressor. Cc: Antony Pavlov Signed-off-by: Yegor Yefremov --- Changes: v3: - rework inode

[PATCH v3 1/3] linux/types.h: add sector_t and blkcnt_t types

2016-02-19 Thread yegorslists
From: Yegor Yefremov Signed-off-by: Yegor Yefremov --- include/linux/types.h | 16 1 file changed, 16 insertions(+) diff --git a/include/linux/types.h b/include/linux/types.h index 9f8eb67..f64ec4a 100644 ---

[PATCH v3 2/3] linux/fs.h: add types and routines needed for SquashFS

2016-02-19 Thread yegorslists
From: Yegor Yefremov Signed-off-by: Yegor Yefremov --- include/linux/fs.h | 27 +++ 1 file changed, 27 insertions(+) diff --git a/include/linux/fs.h b/include/linux/fs.h index 7e9886a..e11a602 100644 ---

[PATCH] fs: fat: fix copy-paste typo

2016-02-19 Thread Antony Pavlov
Signed-off-by: Antony Pavlov --- fs/fat/fat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/fat/fat.c b/fs/fat/fat.c index ece937d..49cd78f 100644 --- a/fs/fat/fat.c +++ b/fs/fat/fat.c @@ -1,7 +1,7 @@ /* - * ramfs.c - a malloc based

[PATCH] Documentation: Update USB fastboot section

2016-02-19 Thread Markus Pargmann
Add some documentation about fastboot 'flash' command and some useful example how to use it to boot an initrd. Signed-off-by: Markus Pargmann --- Documentation/user/usb.rst | 52 ++ 1 file changed, 52 insertions(+) diff --git

Re: [PATCH 1/3] Fix return check of dev_request_mem_region

2016-02-19 Thread Sascha Hauer
On Thu, Feb 18, 2016 at 04:58:49PM -0800, Andrey Smirnov wrote: > On Thu, Feb 18, 2016 at 2:50 AM, Sascha Hauer wrote: > > dev_request_mem_region returns an ERR_PTR, fix places which check for a > > NULL pointer instead. This patch has been generated with this semantic > >