From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Sat, 21 May 2011 01:53:32 +0200 Subject: [U-Boot] [IXP42x PATCH series v4 02/17] add support for IXP42x Rev. B1 and newer In-Reply-To: <1302126558-1318-3-git-send-email-michael@schwingen.org> References: <1302126558-1318-1-git-send-email-michael@schwingen.org> <1302126558-1318-3-git-send-email-michael@schwingen.org> Message-ID: <201105210153.32456.marek.vasut@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Wednesday, April 06, 2011 11:49:03 PM Michael Schwingen wrote: > Signed-off-by: Michael Schwingen > --- > Changes for V2: > > Changes for V3: > - reformat to wrap long lines > Changes for V4: > - add changelog > > arch/arm/cpu/ixp/npe/npe.c | 7 +++++-- > 1 files changed, 5 insertions(+), 2 deletions(-) > > diff --git a/arch/arm/cpu/ixp/npe/npe.c b/arch/arm/cpu/ixp/npe/npe.c > index 857bcad..6d92c53 100644 > --- a/arch/arm/cpu/ixp/npe/npe.c > +++ b/arch/arm/cpu/ixp/npe/npe.c > @@ -621,9 +621,12 @@ int npe_initialize(bd_t * bis) > if (ixFeatureCtrlDeviceRead() == IX_FEATURE_CTRL_DEVICE_TYPE_IXP42X) { > switch (ixFeatureCtrlProductIdRead() & > IX_FEATURE_CTRL_SILICON_STEPPING_MASK) { case > IX_FEATURE_CTRL_SILICON_TYPE_B0: > + default: /* newer than B0 */ > /* > - * If it is B0 Silicon, we only enable port when its corresponding > - * Eth Coprocessor is available. > + * If it is B0 or newer Silicon, we > + * only enable port when its > + * corresponding Eth Coprocessor is > + * available. > */ > if (ixFeatureCtrlComponentCheck(IX_FEATURECTRL_ETH0) == > IX_FEATURE_CTRL_COMPONENT_ENABLED) Acked-by: Marek Vasut