From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 2/2] include:configs: Add usb device-tree fixup for all fsl platforms
Date: Wed, 27 Jan 2016 05:27:18 +0100 [thread overview]
Message-ID: <201601270527.18671.marex@denx.de> (raw)
In-Reply-To: <DB5PR04MB1255F4BE0863905C8F7646AEEAD90@DB5PR04MB1255.eurprd04.prod.outlook.com>
On Wednesday, January 27, 2016 at 05:14:00 AM, Ramneek Mehresh wrote:
> > -----Original Message-----
> > From: Marek Vasut [mailto:marex at denx.de]
> > Sent: Tuesday, January 26, 2016 4:58 PM
> > To: Ramneek Mehresh <ramneek.mehresh@freescale.com>
> > Cc: u-boot at lists.denx.de
> > Subject: Re: [PATCH 2/2] include:configs: Add usb device-tree fixup for
> > all fsl platforms
> >
> > On Tuesday, January 26, 2016 at 12:36:58 PM, Ramneek Mehresh wrote:
> > > Add usb device-tree fixup for all relevant fsl ppc and arm platforms
> > >
> > > Signed-off-by: Ramneek Mehresh <ramneek.mehresh@freescale.com>
> > > ---
> > >
> > > board/freescale/b4860qds/b4860qds.c | 2 +-
> > > board/freescale/bsc9131rdb/bsc9131rdb.c | 2 ++
> > > board/freescale/bsc9132qds/bsc9132qds.c | 2 ++
> > > board/freescale/corenet_ds/corenet_ds.c | 4 ++++
> > > board/freescale/ls2080aqds/ls2080aqds.c | 4 ++++
> > > board/freescale/ls2080ardb/ls2080ardb.c | 4 ++++
> > > board/freescale/mpc8308rdb/mpc8308rdb.c | 4 ++++
> > > board/freescale/mpc8315erdb/mpc8315erdb.c | 2 ++
> > > board/freescale/mpc837xemds/mpc837xemds.c | 2 ++
> > > board/freescale/mpc837xerdb/mpc837xerdb.c | 2 ++
> > > board/freescale/mpc8536ds/mpc8536ds.c | 2 +-
> > > board/freescale/p1010rdb/p1010rdb.c | 2 +-
> > > board/freescale/p1022ds/p1022ds.c | 2 +-
> > > board/freescale/p1023rdb/p1023rdb.c | 2 +-
> > > board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c | 2 +-
> > > board/freescale/p1_twr/p1_twr.c | 3 +++
> > > board/freescale/p2041rdb/p2041rdb.c | 2 +-
> > > board/freescale/t102xqds/t102xqds.c | 2 +-
> > > board/freescale/t102xrdb/t102xrdb.c | 3 +++
> > > board/freescale/t1040qds/t1040qds.c | 2 +-
> > > board/freescale/t104xrdb/t104xrdb.c | 2 +-
> > > board/freescale/t208xqds/t208xqds.c | 3 +++
> > > board/freescale/t208xrdb/t208xrdb.c | 3 +++
> > > board/freescale/t4qds/t4240emu.c | 3 +++
> > > board/freescale/t4qds/t4240qds.c | 3 +++
> > > board/freescale/t4rdb/t4240rdb.c | 3 +++
> > > include/configs/B4860QDS.h | 1 +
> > > include/configs/BSC9131RDB.h | 1 +
> > > include/configs/BSC9132QDS.h | 3 ++-
> > > include/configs/MPC8308RDB.h | 3 +++
> > > include/configs/MPC8315ERDB.h | 1 +
> > > include/configs/MPC837XEMDS.h | 3 ++-
> > > include/configs/MPC837XERDB.h | 1 +
> > > include/configs/MPC8536DS.h | 1 +
> > > include/configs/P1010RDB.h | 1 +
> > > include/configs/P1022DS.h | 1 +
> > > include/configs/P1023RDB.h | 1 +
> > > include/configs/P2041RDB.h | 1 +
> > > include/configs/T102xQDS.h | 1 +
> > > include/configs/T102xRDB.h | 1 +
> > > include/configs/T1040QDS.h | 1 +
> > > include/configs/T104xRDB.h | 1 +
> > > include/configs/T208xQDS.h | 1 +
> > > include/configs/T208xRDB.h | 1 +
> > > include/configs/T4240QDS.h | 1 +
> > > include/configs/corenet_ds.h | 1 +
> > > include/configs/ls2080aqds.h | 1 +
> > > include/configs/ls2080ardb.h | 1 +
> > > include/configs/p1_p2_rdb_pc.h | 1 +
> > > include/configs/p1_twr.h | 1 +
> > > 50 files changed, 85 insertions(+), 12 deletions(-)
> >
> > Each such new macro must be documented. What is the point of this bulk
> > rename anyway?
>
> Yes, I'll document the new MACRO defined for usb device-tree fixup.
> However, this is not bulk rename. I just modified all these files to
> include usb device-tree fixup for all fsl ppc platforms. Most of these
> platforms were already using this mechanism (some via different ways), but
> now its consistent across them.
Wouldn't it make more sense to make this generic then instead of patching
zillion files ?
next prev parent reply other threads:[~2016-01-27 4:27 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-26 11:36 [U-Boot] [PATCH 1/2] fsl:usb: Make fsl usb device-tree fixup arch independent Ramneek Mehresh
2016-01-26 11:27 ` Marek Vasut
2016-01-26 11:36 ` [U-Boot] [PATCH 2/2] include:configs: Add usb device-tree fixup for all fsl platforms Ramneek Mehresh
2016-01-26 11:28 ` Marek Vasut
2016-01-27 4:14 ` Ramneek Mehresh
2016-01-27 4:27 ` Marek Vasut [this message]
2016-01-27 4:30 ` Ramneek Mehresh
2016-01-27 7:35 ` Marek Vasut
2016-01-27 8:26 ` Ramneek Mehresh
2016-01-27 8:27 ` Marek Vasut
2016-01-27 11:33 ` Ramneek Mehresh
2016-01-27 11:42 ` Marek Vasut
2016-01-28 11:05 ` Ramneek Mehresh
2016-01-28 11:34 ` Marek Vasut
2016-01-28 12:15 ` Ramneek Mehresh
2016-02-08 11:07 ` Ramneek Mehresh
2016-02-08 15:26 ` Marek Vasut
2016-02-24 4:44 ` [U-Boot] [PATCH v2 0/2] Make usb device-tree fixup independent of USB controller Sriram Dash
2016-02-24 4:44 ` [U-Boot] [PATCH v2 1/2] board:freescale:common: Move device-tree fixup framework to common file Sriram Dash
2016-02-25 17:58 ` Marek Vasut
2016-02-26 16:07 ` Sriram Dash
2016-02-26 16:21 ` Marek Vasut
2016-02-24 4:44 ` [U-Boot] [PATCH v2 2/2] board:freescale:usb: Add device-tree fixup support for xhci controller Sriram Dash
2016-02-25 18:00 ` Marek Vasut
2016-02-26 16:19 ` Sriram Dash
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201601270527.18671.marex@denx.de \
--to=marex@denx.de \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.