From: Sascha Hauer <s.hauer@pengutronix.de>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] [Patch 0/9] U-boot-V2: Introduce I2C support for SDP3430
Date: Wed, 18 Jun 2008 17:28:20 +0200 [thread overview]
Message-ID: <20080618152820.GA6603@pengutronix.de> (raw)
In-Reply-To: <7A436F7769CA33409C6B44B358BFFF0CD3192D75@dlee02.ent.ti.com>
On Wed, Jun 18, 2008 at 10:15:58AM -0500, Menon, Nishanth wrote:
> Timur,
> > -----Original Message-----
> > From: Timur Tabi [mailto:timur at freescale.com]
> > Sent: Wednesday, June 18, 2008 9:55 AM
> > To: Menon, Nishanth
> > Cc: Sascha Hauer; Laurent Desnogues; Kamat, Nishant; philip.balister at gmail.com; u-boot-
> > users at lists.sourceforge.net
> > Subject: Re: [U-Boot-Users] [Patch 0/9] U-boot-V2: Introduce I2C support for SDP3430
> >
> > Do we really want to bloat U-Boot with these huge Linux drivers? U-Boot already
> > has I2C support that works pretty well. Your patchset is overkill, IMHO.
> Please see U-boot v2 here: http://www.denx.de/cgi-bin/gitweb.cgi?p=u-boot/u-boot-v2.git;a=tree;f=drivers;h=2b524fc7692e5ee0b99843df17a911dd54c84e73;hb=78c2fde77a953351aac8d7e92336eb37b64c0985
>
> It does not have i2c support. And IMHO, using kernel like i2c addition in U-Boot v2 is appropriate. Why this is not a bloat U-Boot v2?
> A) Now, if you just want i2c_transfer without any device interface, you don't need to compile in the CHARDEV.
> B) Since we use a different linking strategy in U-Boot-v2 which uses gcc link stage to decide which functions be retained and which not, it is pretty neat to see all unused functionality disappear.
Note that this is only true when modules are disabled. Once modules are
enabled, every function marked with EXPORT_MODULE gets linked in as you
don't know which functions will be needed later. So please check your
build with modules enabled.
Sascha
--
Pengutronix e.K. - Linux Solutions for Science and Industry
-----------------------------------------------------------
Kontakt-Informationen finden Sie im Header dieser Mail oder
auf der Webseite -> http://www.pengutronix.de/impressum/ <-
next prev parent reply other threads:[~2008-06-18 15:28 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-18 12:33 [U-Boot-Users] [Patch 0/9] U-boot-V2: Introduce I2C support for SDP3430 Menon, Nishanth
2008-06-18 14:55 ` Timur Tabi
2008-06-18 15:15 ` Menon, Nishanth
2008-06-18 15:28 ` Sascha Hauer [this message]
2008-06-18 15:40 ` Menon, Nishanth
2008-06-18 15:39 ` Timur Tabi
2008-06-18 15:52 ` Menon, Nishanth
2008-06-18 15:58 ` Sascha Hauer
2008-06-18 16:04 ` Menon, Nishanth
2008-06-18 18:38 ` Robert Schwebel
2008-06-18 18:48 ` Menon, Nishanth
2008-06-18 19:11 ` Robert Schwebel
2008-06-18 20:21 ` Menon, Nishanth
2008-06-18 20:44 ` Robert Schwebel
2008-06-18 20:52 ` Menon, Nishanth
2008-06-19 15:10 ` Menon, Nishanth
2008-06-19 15:11 ` [U-Boot-Users] [Patch 1/9]U-boot-V2:ID: Add i2c_device_id Menon, Nishanth
2008-06-19 15:11 ` [U-Boot-Users] [Patch 2/9]U-boot-V2:ID: Introduce idr Menon, Nishanth
2008-06-19 15:11 ` [U-Boot-Users] [Patch 3/9]U-boot-V2:I2C: Introduce core Menon, Nishanth
2008-06-19 15:12 ` [U-Boot-Users] [Patch 4/9]U-boot-V2:I2C: Introduce i2c-dev Menon, Nishanth
2008-06-19 15:12 ` [U-Boot-Users] [Patch 5/9]U-boot-V2:cmd: add I2C commands Menon, Nishanth
2008-06-19 20:33 ` Wolfgang Denk
2008-06-20 2:10 ` Menon, Nishanth
2008-06-20 7:28 ` Wolfgang Denk
2008-06-20 10:28 ` Sascha Hauer
2008-06-20 13:35 ` Menon, Nishanth
2008-06-20 15:16 ` Sascha Hauer
2008-06-20 16:28 ` Menon, Nishanth
2008-06-23 7:39 ` Sascha Hauer
2008-06-23 13:29 ` Menon, Nishanth
2008-06-21 2:34 ` [U-Boot-Users] [Patch 4/9 Try 2]U-boot-V2:I2C: Introduce i2c-dev Menon, Nishanth
2008-06-24 8:05 ` Sascha Hauer
2008-06-25 1:48 ` [U-Boot-Users] [Patch 4/9 Try 3]U-boot-V2:I2C: " Menon, Nishanth
2008-06-21 2:34 ` [U-Boot-Users] [Patch 5/9 Try2]U-boot-V2:cmd: add I2C commands Menon, Nishanth
2008-06-21 7:23 ` Wolfgang Denk
2008-06-22 18:56 ` [U-Boot-Users] [Patch 5/9 Try 3]U-boot-V2:cmd: " Menon, Nishanth
2008-06-24 6:18 ` Sascha Hauer
2008-06-25 1:46 ` [U-Boot-Users] [Patch 5/9 Try 4]U-boot-V2:cmd: " Menon, Nishanth
2008-06-19 15:12 ` [U-Boot-Users] [Patch 6/9]U-boot-V2:cmd: I2C commands support Menon, Nishanth
2008-06-19 15:13 ` [U-Boot-Users] [Patch 7/9]U-boot-V2:ARM:OMAP: OMAP classes Menon, Nishanth
2008-06-19 15:13 ` [U-Boot-Users] [Patch 8/9]U-boot-V2:I2C:Busses: OMAP I2C Adapter Menon, Nishanth
2008-06-19 15:13 ` [U-Boot-Users] [Patch 9/9]U-boot-V2:Boards:SDP3430 I2C bus1 Menon, Nishanth
2008-06-18 18:41 ` [U-Boot-Users] [Patch 0/9] U-boot-V2: Introduce I2C support for SDP3430 Robert Schwebel
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=20080618152820.GA6603@pengutronix.de \
--to=s.hauer@pengutronix.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox