Re: [U-Boot] [RFC] mmc: Remove ops from struct mmc and put in mmc_ops

2014-03-03 Thread Marek Vasut
On Wednesday, February 26, 2014 at 06:52:24 PM, Pantelis Antoniou wrote: > Remove the in-structure ops and put them in mmc_ops with > a constant pointer to it. > > This makes the mmc structure smaller as well as conserving > code space (in theory). > > All in-tree drivers are converted as well; t

Re: [U-Boot] [RFC] mmc: Remove ops from struct mmc and put in mmc_ops

2014-02-27 Thread Tom Rini
On Thu, Feb 27, 2014 at 04:04:55AM +, Rommel G Custodio wrote: > Dear Pantelis Antoniou > > Pantelis Antoniou antoniou-consulting.com> writes: > > > > > Remove the in-structure ops and put them in mmc_ops with > > a constant pointer to it. > > > > This makes the mmc structure smaller as we

Re: [U-Boot] [RFC] mmc: Remove ops from struct mmc and put in mmc_ops

2014-02-27 Thread Tom Rini
On Wed, Feb 26, 2014 at 07:52:24PM +0200, Pantelis Antoniou wrote: > Remove the in-structure ops and put them in mmc_ops with > a constant pointer to it. > > This makes the mmc structure smaller as well as conserving > code space (in theory). > > All in-tree drivers are converted as well; this i

Re: [U-Boot] [RFC] mmc: Remove ops from struct mmc and put in mmc_ops

2014-02-26 Thread Rommel G Custodio
Dear Pantelis Antoniou Pantelis Antoniou antoniou-consulting.com> writes: > > Remove the in-structure ops and put them in mmc_ops with > a constant pointer to it. > > This makes the mmc structure smaller as well as conserving > code space (in theory). First build is latest master. Second buil

[U-Boot] [RFC] mmc: Remove ops from struct mmc and put in mmc_ops

2014-02-26 Thread Pantelis Antoniou
Remove the in-structure ops and put them in mmc_ops with a constant pointer to it. This makes the mmc structure smaller as well as conserving code space (in theory). All in-tree drivers are converted as well; this is done in a single patch in order to not break git bisect. Signed-off-by: Panteli