Re: [PATCH Mütze] ARM: don't let the unwinder depend on exception handling

2015-11-08 Thread Sascha Hauer
On Fri, Nov 06, 2015 at 10:29:12AM +0100, Uwe Kleine-König wrote: > To be able to use dump_stack() without support exception handling the > definition of dump_stack has to move to a file that is actually compiled > without ARM_EXCEPTIONS. > > Fixes: d332597c7c16 ("ARM: make exception handling opti

Re: [PATCH 00/10] Rework towards phytec-som-imx6 and new variants

2015-11-08 Thread Sascha Hauer
Hi Stefan, On Fri, Nov 06, 2015 at 11:21:48AM +0100, Stefan Christ wrote: > Hi, > > the patchstack first refactors the phyCARD-i.MX6 and phyFLEX-i.MX6 to a common > phytec-som-imx6. Then some phyFLEX-i.MX6 variants and the new phyCORE-i.MX6 > are > added plus some environment updates and one ima

Re: [PATCH 10/10] ARM: imx6dl: Add support for Phytec phyCORE-i.MX6 SOM

2015-11-08 Thread Sascha Hauer
On Fri, Nov 06, 2015 at 11:21:58AM +0100, Stefan Christ wrote: > From: Christian Hemp > > Add Phytec phyCORE-i.MX6 SOM. > - imx6dl-phytec-phycore-som-nand > - 256GB RAM on 1 Bank with 32Bit > - 10/100MBit Ethernet > - NAND > - SD > - UART > > Signed-o

Re: [PATCH] usb: mx25: fix bit position of "Host power mask"

2015-11-08 Thread Sascha Hauer
On Fri, Nov 06, 2015 at 11:32:48AM +0100, Uwe Kleine-König wrote: > The bit MX25_H1_PM_BIT value is handled for port 1 as MX25_OTG_PM_BIT is > for port 0. The latter is called "OPM: OTG power mask" in the i.MX25 > reference manual. Its description matches the description of "HPM: Host > power mask"

Re: [PATCH 1/7] ARM: imx6: add MMDC arbitration control register define

2015-11-08 Thread Sascha Hauer
On Fri, Nov 06, 2015 at 05:25:33PM +0100, Lucas Stach wrote: > Signed-off-by: Lucas Stach > --- > arch/arm/mach-imx/include/mach/imx6-ddr-regs.h | 1 + > 1 file changed, 1 insertion(+) Applied, thanks Sascha -- Pengutronix e.K. | | Industr

Re: [PATCH] fbconsole: move font variable into struct font_desc

2015-11-08 Thread Sascha Hauer
On Sat, Nov 07, 2015 at 07:16:16PM -0800, Du Huanpeng wrote: > replace font related variables with a struct pointer, > font_desc. > > Signed-off-by: Du Huanpeng > --- > drivers/video/fbconsole.c | 36 +--- > 1 file changed, 17 insertions(+), 19 deletions(-) > > d

Re: [PATCH] lib: fix coding style

2015-11-08 Thread Sascha Hauer
On Sat, Nov 07, 2015 at 06:55:25AM -0800, Du Huanpeng wrote: > Signed-off-by: Du Huanpeng > --- Applied, thanks Sascha > lib/fonts/fonts.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/lib/fonts/fonts.c b/lib/fonts/fonts.c > index 5a9d3f1..39efb61 100644 > ---

Re: [PATCH v2] i2c: Add support for DesignWare controllers

2015-11-08 Thread Sascha Hauer
On Sun, Nov 08, 2015 at 04:18:46PM -0800, Andrey Smirnov wrote: > Add a driver for DesignWare I2C controller IP block found on several > SoCs including Altera SoC products > > Tested using Terrasic SoCKit board and GPIO expander board with I2C > EEPROM on it > > Signed-off-by: Andrey Smirnov Ap

Re: [PATCH] fs: smhfs: Fix return value of truncate()

2015-11-08 Thread Sascha Hauer
On Sun, Nov 08, 2015 at 04:21:13PM -0800, Andrey Smirnov wrote: > Returning -ENOSYS as a result of truncate() breaks ability to write to > semihosting host's filesystem, so change the return value to 0. This > shouldn't cause any problems since all of the funcionlaity of > truncate() should is alre

[PATCH] fs: smhfs: Fix return value of truncate()

2015-11-08 Thread Andrey Smirnov
Returning -ENOSYS as a result of truncate() breaks ability to write to semihosting host's filesystem, so change the return value to 0. This shouldn't cause any problems since all of the funcionlaity of truncate() should is already handled by 'open' (via O_TRUNC) and 'write' (will automatically grow

[PATCH v2] i2c: Add support for DesignWare controllers

2015-11-08 Thread Andrey Smirnov
Add a driver for DesignWare I2C controller IP block found on several SoCs including Altera SoC products Tested using Terrasic SoCKit board and GPIO expander board with I2C EEPROM on it Signed-off-by: Andrey Smirnov --- New in version 2: - kzalloc() replaced with xzalloc() - removed red

[PATCH] i2c-imx: Use xzalloc instead of kzalloc

2015-11-08 Thread Andrey Smirnov
Driver's private data structure is allocated with kzalloc without any code to check for kzalloc's possible failure. Fix that by replaceing kzalloc with xzalloc. Signed-off-by: Andrey Smirnov --- drivers/i2c/busses/i2c-imx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driv