Re: [U-Boot] [PATCH v3 2/3] ftsmc020: un-nest the register structure in header

2011-05-12 Thread Wolfgang Denk
Dear Macpaul Lin, In message <1304324251-15293-2-git-send-email-macp...@andestech.com> you wrote: > Un-nestted the register structure in ftsmc020.h > > Signed-off-by: Macpaul Lin > --- > Changes for v2: > - Remove assembly register offsets for support lowlevel_init.S. > - The nested structur

Re: [U-Boot] [PATCH v3 3/3] ftsmc020: add missing definitions

2011-05-12 Thread Wolfgang Denk
Dear Macpaul Lin, In message <1304324251-15293-3-git-send-email-macp...@andestech.com> you wrote: > Add missing definitions in header file according to datasheet. > > Signed-off-by: Macpaul Lin > --- > Changes for v2: > - Remove assembly register offsets for support lowlevel_init.S. > - The

Re: [U-Boot] [PATCH] ftpmu010.h: fix some missing declaration in header

2011-05-12 Thread Wolfgang Denk
Dear Macpaul Lin, In message <1304335727-25723-1-git-send-email-macp...@andestech.com> you wrote: > Fix some missing declaration in header. > > Signed-off-by: Macpaul Lin > --- > include/faraday/ftpmu010.h |3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) Applied, thanks. Best re

Re: [U-Boot] [PATCH v2] Decreases code size of the nand_spl

2011-05-12 Thread Wolfgang Denk
Dear Scott, In message <4dc1a7f1.7000...@dawning.com> Alex Waterman wrote: > This patch decreases the code size of the nand_spl by turning multiple > function > pointer dereferences in a single function into a single local function > pointer. > > Signed-off-by: Alex Waterman > Cc: Scott Wood

Re: [U-Boot] [PATCH] examples: add smc911x_eeprom to clean target

2011-05-12 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1304805930-15654-1-git-send-email-vap...@gentoo.org> you wrote: > Signed-off-by: Mike Frysinger > --- > Makefile |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH,

Re: [U-Boot] [PATCH] kwbimage: Fix check variable of checksum

2011-05-12 Thread Wolfgang Denk
Dear Nobuhiro Iwamatsu, In message <1305084788-19689-1-git-send-email-nobuhiro.iwamatsu...@renesas.com> you wrote: > From: Nobuhiro Iwamatsu > > calc_hdrcsum two times are checked. checksumi of exthdr is not checked. > > Signed-off-by: Nobuhiro Iwamatsu > CC: Prafulla Wadaskar > --- > tools

Re: [U-Boot] [PATCH v2] Decreases code size of the nand_spl

2011-05-12 Thread Scott Wood
On Thu, 12 May 2011 23:49:40 +0200 Wolfgang Denk wrote: > Dear Scott, > > In message <4dc1a7f1.7000...@dawning.com> Alex Waterman wrote: > > This patch decreases the code size of the nand_spl by turning multiple > > function > > pointer dereferences in a single function into a single local func

Re: [U-Boot] OSE support shouldnt be enabled by default

2011-05-12 Thread Wolfgang Denk
Dear Mike Frysinger, In message <201105121739.51157.vap...@gentoo.org> you wrote: > > i did send out an actual patch to revert this, and you picked it up. Torkel > didnt comment on that either though (he was cc-ed) ... > > see commit 0aca983e058d6205962b3c09cb6ece520b6ea218 Ah, thanks. Forgot

Re: [U-Boot] [PATCH v2] Decreases code size of the nand_spl

2011-05-12 Thread Wolfgang Denk
Dear Scott, In message <20110512165759.06923...@schlenkerla.am.freescale.net> you wrote: > > > Can this patch go in, please? I would like to see the build problems > > fixed. > > Yes, sorry for the delay -- I'll try to get to it tomorrow. Thanks. Guess you guys are as busy as evryone else ;-)

Re: [U-Boot] [PATCH v2 6/7] Tegra2: Add USB support

2011-05-12 Thread Simon Glass
On Thu, May 12, 2011 at 12:43 PM, Remy Bohmer wrote: > Hi, > > 2011/5/5 Simon Glass : > > This adds basic USB support for port 0. The other port is not supported > by this CL. > > > > Signed-off-by: Simon Glass > > --- > > arch/arm/include/asm/arch-tegra2/tegra2.h |2 + > > arch/arm/include

[U-Boot] serial_device member functions don't know their serial port

2011-05-12 Thread Simon Glass
Hi, I am taking a look at serial ports in U-Boot and it seems that the various functions in 'struct serial_device' do not include a pointer to the device they are talking about. Therefore for devices with multiple ports there is no way for these functions to know what to do. The workaround in dri

[U-Boot] [PATCH 2/3] sntp: avoid use of uninitialized variable

2011-05-12 Thread Chris Packham
From: Luuk Paulussen When we use the ntpserverip environment variable argv[1] may not be set. Printing the error message using the NetNtpServerIP variable ensures the correct output in both cases. Signed-off-by: Luuk Paulussen Acked-by: Chris Packham Cc: Ben Warren --- common/cmd_net.c |

[U-Boot] [PATCH 1/3] rtc: add driver for internal RTC on kirkwood SoC

2011-05-12 Thread Chris Packham
From: Luuk Paulussen Signed-off-by: Luuk Paulussen Acked-by: Chris Packham Cc: Prafulla Wadaskar --- arch/arm/include/asm/arch-kirkwood/kirkwood.h |2 + drivers/rtc/Makefile |1 + drivers/rtc/kirkwood.c| 76 +

[U-Boot] [PATCH 3/3] bootp: add ntpserver option to bootp request

2011-05-12 Thread Chris Packham
From: Luuk Paulussen Signed-off-by: Luuk Paulussen Acked-by: Chris Packham Cc: Ben Warren --- net/bootp.c | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/net/bootp.c b/net/bootp.c index 4db63cb..53f37d0 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -228,6

[U-Boot] [PATCH 1/3] rtc: add driver for internal RTC on kirkwood SoC

2011-05-12 Thread Chris Packham
From: Luuk Paulussen Signed-off-by: Luuk Paulussen Acked-by: Chris Packham Cc: Prafulla Wadaskar --- arch/arm/include/asm/arch-kirkwood/kirkwood.h |2 + drivers/rtc/Makefile |1 + drivers/rtc/kirkwood.c| 76 +

[U-Boot] [PATCH 3/3] bootp: add ntpserver option to bootp request

2011-05-12 Thread Chris Packham
From: Luuk Paulussen Signed-off-by: Luuk Paulussen Acked-by: Chris Packham Cc: Ben Warren --- net/bootp.c | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/net/bootp.c b/net/bootp.c index 4db63cb..53f37d0 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -228,6

Re: [U-Boot] [PATCH 1/3] rtc: add driver for internal RTC on kirkwood SoC

2011-05-12 Thread Chris Packham
On Fri, May 13, 2011 at 1:29 PM, Chris Packham wrote: > From: Luuk Paulussen > > Signed-off-by: Luuk Paulussen > Acked-by: Chris Packham > Cc: Prafulla Wadaskar Sorry for the spam. I was just trying (and failing) to get git to add the Cc. ___ U-Boot

Re: [U-Boot] [PATCH 3/3] bootp: add ntpserver option to bootp request

2011-05-12 Thread Chris Packham
On Fri, May 13, 2011 at 1:29 PM, Chris Packham wrote: > From: Luuk Paulussen > > Signed-off-by: Luuk Paulussen > Acked-by: Chris Packham > Cc: Ben Warren Sorry for the spam. I was just trying (and failing) to get git to add the Cc. ___ U-Boot mailin

Re: [U-Boot] [PATCH 2/3] sntp: avoid use of uninitialized variable

2011-05-12 Thread Chris Packham
On Fri, May 13, 2011 at 1:29 PM, Chris Packham wrote: > From: Luuk Paulussen > > When we use the ntpserverip environment variable argv[1] may not be set. > Printing the error message using the NetNtpServerIP variable ensures the > correct output in both cases. > > Signed-off-by: Luuk Paulussen >

[U-Boot] [PATCH 2/3] sntp: avoid use of uninitialized variable

2011-05-12 Thread Chris Packham
From: Luuk Paulussen When we use the ntpserverip environment variable argv[1] may not be set. Printing the error message using the NetNtpServerIP variable ensures the correct output in both cases. Signed-off-by: Luuk Paulussen Acked-by: Chris Packham Cc: Ben Warren --- common/cmd_net.c |

Re: [U-Boot] serial_device member functions don't know their serial port

2011-05-12 Thread Mike Frysinger
On Thursday, May 12, 2011 20:35:39 Simon Glass wrote: > I am taking a look at serial ports in U-Boot and it seems that the various > functions in 'struct serial_device' do not include a pointer to the device > they are talking about. Therefore for devices with multiple ports there is > no way for t

Re: [U-Boot] [PATCH V7 2/3] PMIC: Add dialog pmic support

2011-05-12 Thread Jason Liu
Hi, Stefano, 2011/5/12 Stefano Babic : > On 05/11/2011 10:03 AM, Jason Liu wrote: >> This patch add dialog pmic(DA9053) driver with I2C interface support >> In order to not duplicate code and according to the discussion on the >> mail-list, change fsl_pmic.c to spi_i2c_pmic.c.Actaully,spi_i2c_pmic

Re: [U-Boot] [PATCH V7 3/3] MX53: support for freescale MX53LOCO board

2011-05-12 Thread Jason Hui
Hi, Stefano, On Thu, May 12, 2011 at 5:03 PM, Stefano Babic wrote: > On 05/12/2011 08:13 AM, Jason Liu wrote: >> Hi, Stefano, >> > > Hi Jason, >  u32 get_cpu_rev(void);  #define is_soc_rev(rev)      ((get_cpu_rev() & 0xFF) - rev)  void sdelay(unsigned long); +void pmic_reg_wri

[U-Boot] Good day

2011-05-12 Thread Annabel Laura
Am Mrs Annabel Laura am going on a cancer surgery today.contact my lawyer,Tell him that I have WILLED 14.258M to you.quoting my personal reference number BB/AMZ/900/2015/SWYI/316uk My lawyer Name barrister Lio Bacon. Attorney at-Law. Lio Bacon & Associates LLP E-mail; barrliobaconlawfi...@lawyer.

Re: [U-Boot] [PATCH] Fix variable flavor in examples/standalone/Makefile

2011-05-12 Thread Che-liang Chiou
Thanks, Wolfgang. On Fri, May 13, 2011 at 4:30 AM, Wolfgang Denk wrote: > Dear Che-liang Chiou, > > In message you > wrote: >> GNU Makefile have two flavors of variables, recursively expanded that is >> defined by using '=', and simply expanded that is defined by using ':='. >> >> The bug is ca

[U-Boot] Be Informed

2011-05-12 Thread Yvette
You Are A Recipient Of $530,000.00!! Our Movie company have chosen you via your e-mail to receive $530,000.00 and to attend our movie event holding in (Malaysia) 20th July, 2011 in commemoration of our 25th movie anniversary. You can receive amount before event date. Answer this: Name, Phone, Have

Re: [U-Boot] [PATCH 1/3] omap4: add support for gpios

2011-05-12 Thread Gilles Chanteperdrix
On 05/10/2011 04:08 PM, John Rigby wrote: > On Mon, May 9, 2011 at 11:04 PM, Gilles Chanteperdrix > wrote: >> Copied from omap3. > I have not looked at the code but if it truly is a copy (other than > some base addresses) is there a way to share with omap3? I am going to fix this and resend anoth

Re: [U-Boot] [PATCH 1/3] omap4: add support for gpios

2011-05-12 Thread John Rigby
> > I am going to fix this and resend another round of patches. But, it this > the only thing I should fix? > My comment was not a complete review only a comment about sharing. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/list

Re: [U-Boot] [PATCH 1/3] omap4: add support for gpios

2011-05-12 Thread Gilles Chanteperdrix
On 05/13/2011 07:31 AM, John Rigby wrote: >> >> I am going to fix this and resend another round of patches. But, it this >> the only thing I should fix? >> > My comment was not a complete review only a comment about sharing. I got that, I am just trying to get more comments before I send another r

[U-Boot] [GIT PULL] Pull request u-boot-mpc85xx

2011-05-12 Thread Kumar Gala
The following changes since commit 3500e9aed6e13a988f4a5ef6503112fda1c4a7fc: Nobuhiro Iwamatsu (1): kwbimage: Fix check variable of checksum are available in the git repository at: git://git.denx.de/u-boot-mpc85xx master Timur Tabi (1): powerpc/85xx: fix compatible property for

Re: [U-Boot] OSE support shouldnt be enabled by default

2011-05-12 Thread Torkel Lundgren
I haven't had the time to look into this. Meanwhile, config_defaults.h can be reverted and I'll add CONFIG_BOOTM_OSE to the configs of the boards affected later. BR Torkel -Ursprungligt meddelande- Från: vapierfil...@gmail.com [mailto:vapierfil...@gmail.com] För Mike Frysinger Skickat: d

[U-Boot] [PATCH v4 1/3] km/common: implement boardId HWkey checks as u-boot cmd

2011-05-12 Thread Holger Brunck
From: Thomas Herzmann BoardId and HWKey are used to identify the HW class of a given board. The correct values are stored in the inventory eeprom. During creation time of a boot package the boardId and HWkey for the SW is stored in the default environment and burned into the flash. During boottim

[U-Boot] [PATCH v4 3/3] km/common: add pnvramsize to default environment

2011-05-12 Thread Holger Brunck
The pnvram size was used later from start scripts in linux. Therefore it was added to the default environment. Signed-off-by: Holger Brunck Signed-off-by: Valentin Longchamp Acked-by: Heiko Schocher cc: Wolfgang Denk cc: Detlev Zundel --- changes for v4: - fix small bug introduced in v2,

[U-Boot] [PATCH v4 0/3] km/common mainlining remaining parts

2011-05-12 Thread Holger Brunck
This patch serie comprehends the missing parts of the mostly already committed patch serie "v2 km/common mainlining". See: http://lists.denx.de/pipermail/u-boot/2011-May/092323.html Holger Brunck (2): km/common: simplify default environment km/common: add pnvramsize to default environment Tho

[U-Boot] [PATCH v4 2/3] km/common: simplify default environment

2011-05-12 Thread Holger Brunck
This is a first step to simplify the default environment. Move all the environment variables which are only needed for debugging purpose to textfiles in the scripts directory. In case of debugging these files can be loaded via tftp into RAM and set via the env import command. Other variables are id

Re: [U-Boot] [PATCH v2] Decreases code size of the nand_spl

2011-05-12 Thread Stefan Roese
On Thursday 12 May 2011 23:49:40 Wolfgang Denk wrote: > > This patch decreases the code size of the nand_spl by turning multiple > > function pointer dereferences in a single function into a single local > > function pointer. > > > > Signed-off-by: Alex Waterman > > Cc: Scott Wood > > Cc: Stefan

[U-Boot] build breakage with - Fix building tools alone with host compiler patch

2011-05-12 Thread Kumar Gala
The following commit breaks building MPC8572DS_config (and a lot more): commit bbc6353c740064c8e0741b772376a1a67a1c3f01 Author: François Revol Date: Fri Mar 18 11:03:03 2011 + Fix building tools alone with host compiler - don't include config.h when building with host cc, - HOSTC

Re: [U-Boot] [PATCH V7 2/3] PMIC: Add dialog pmic support

2011-05-12 Thread Stefano Babic
On 05/13/2011 05:08 AM, Jason Liu wrote: > Hi, Stefano, Hi Jason, >> This is not what I meant. You have duplicated the code, instead of merge >> the two functions together. And I think the switch is wrong. >> This file provides a general access to PMIc using SPI/I2C. There should >> not be #ifdef

[U-Boot] Dear Beneficiary, It is with gladness, i write you this message, to congratulate you on the successful release of the sum of $25 Million USD to you, Credited to Online Bank ATM Card account t

2011-05-12 Thread Mr . Jimmy Isu
Dear Beneficiary, It is with gladness, i write you this message, to congratulate you on the successful release of the sum of $25 Million USD to you, Credited to Online Bank ATM Card account that was set up for you in our bank the Intercontinental Bank Plc. The Metropolitan Courier is unable to

<    1   2