<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/drivers/net/lan91c96.c, branch v2011.06</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<entry>
<title>NET: lan91c96: Correct chip detect logic</title>
<updated>2011-01-18T22:58:35+00:00</updated>
<author>
<name>Yanjun Yang</name>
<email>yangyj.ee@gmail.com</email>
</author>
<published>2010-12-28T08:08:25+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=16721715b9f753c6f165bb62eb8e6f57652cc3dc'/>
<id>16721715b9f753c6f165bb62eb8e6f57652cc3dc</id>
<content type='text'>
The lan91c96_detect_chip routine is not correct according
to the manual.

Signed-off-by: YanJun Yang &lt;yangyj.ee@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The lan91c96_detect_chip routine is not correct according
to the manual.

Signed-off-by: YanJun Yang &lt;yangyj.ee@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>LAN91C*: Change chip names to fit the eth_device struct size</title>
<updated>2011-01-10T21:38:36+00:00</updated>
<author>
<name>Yanjun Yang</name>
<email>yangyj.ee@gmail.com</email>
</author>
<published>2010-12-26T02:40:54+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=0e7790d450000c1a2cda40458adb28707eaa5041'/>
<id>0e7790d450000c1a2cda40458adb28707eaa5041</id>
<content type='text'>
The eth_device.name field length is limited by NAMESIZE,
which is 16 defined in include/net.h. Unfortunately, two
of the names in lan91c96.c are beyond that.

Signed-off-by: YanJun Yang &lt;yangyj.ee@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The eth_device.name field length is limited by NAMESIZE,
which is 16 defined in include/net.h. Unfortunately, two
of the names in lan91c96.c are beyond that.

Signed-off-by: YanJun Yang &lt;yangyj.ee@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lan91c96, smc911x: remove useless free(ptr) calls on NULL ptr</title>
<updated>2010-05-17T21:21:08+00:00</updated>
<author>
<name>Serge Ziryukin</name>
<email>ftrvxmtrx@gmail.com</email>
</author>
<published>2010-05-10T14:40:49+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=a599cde7698acc5ae3d0f731b4a7d63a931aae63'/>
<id>a599cde7698acc5ae3d0f731b4a7d63a931aae63</id>
<content type='text'>
Signed-off-by: Serge Ziryukin &lt;ftrvxmtrx@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Serge Ziryukin &lt;ftrvxmtrx@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>NET: LAN91C96 CONFIG_NET_MULTIify</title>
<updated>2009-12-14T05:31:26+00:00</updated>
<author>
<name>Nishanth Menon</name>
<email>nm@ti.com</email>
</author>
<published>2009-10-16T05:06:35+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=b7ad4109da342dfc787468fc713d88d0a8b9e67a'/>
<id>b7ad4109da342dfc787468fc713d88d0a8b9e67a</id>
<content type='text'>
Make the lan91c96 driver capable of CONFIG_NET_MULTI
to be clean for the new arch, add a a lil detect function
Most of the formatting change was done to keep checkpatch
silent, but a few functions and #if 0ed code which
does not make sense for NET_MULTI have been removed

Now, use the lan91c96_initialize() function to init the driver

Signed-off-by: Nishanth Menon &lt;nm@ti.com&gt;
Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make the lan91c96 driver capable of CONFIG_NET_MULTI
to be clean for the new arch, add a a lil detect function
Most of the formatting change was done to keep checkpatch
silent, but a few functions and #if 0ed code which
does not make sense for NET_MULTI have been removed

Now, use the lan91c96_initialize() function to init the driver

Signed-off-by: Nishanth Menon &lt;nm@ti.com&gt;
Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>lan91c96/smc91111/smc911x: get mac address from environment</title>
<updated>2009-03-20T21:39:11+00:00</updated>
<author>
<name>Mike Frysinger</name>
<email>vapier@gentoo.org</email>
</author>
<published>2009-02-12T00:09:54+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=03f3d8d3b39cf85c0ce7ca903b436701e8aa610b'/>
<id>03f3d8d3b39cf85c0ce7ca903b436701e8aa610b</id>
<content type='text'>
The environment is the canonical storage location of the mac address, so
we're killing off the global data location and moving everything to
querying the env directly.

Also, do not bother checking the EEPROM if the env is setup.  This
simplifies the code greatly.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
Signed-off-by: Wolfgang Dnek &lt;wd@denx.de&gt;
CC: Ben Warren &lt;biggerbadderben@gmail.com&gt;
CC: Rolf Offermanns &lt;rof@sysgo.de&gt;
CC: Erik Stahlman &lt;erik@vt.edu&gt;
CC: Daris A Nevil &lt;dnevil@snmc.com&gt;
CC: Sascha Hauer &lt;s.hauer@pengutronix.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The environment is the canonical storage location of the mac address, so
we're killing off the global data location and moving everything to
querying the env directly.

Also, do not bother checking the EEPROM if the env is setup.  This
simplifies the code greatly.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
Signed-off-by: Wolfgang Dnek &lt;wd@denx.de&gt;
CC: Ben Warren &lt;biggerbadderben@gmail.com&gt;
CC: Rolf Offermanns &lt;rof@sysgo.de&gt;
CC: Erik Stahlman &lt;erik@vt.edu&gt;
CC: Daris A Nevil &lt;dnevil@snmc.com&gt;
CC: Sascha Hauer &lt;s.hauer@pengutronix.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>rename CFG_ macros to CONFIG_SYS</title>
<updated>2008-10-18T19:54:03+00:00</updated>
<author>
<name>Jean-Christophe PLAGNIOL-VILLARD</name>
<email>plagnioj@jcrosoft.com</email>
</author>
<published>2008-10-16T13:01:15+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6d0f6bcf337c5261c08fabe12982178c2c489d76'/>
<id>6d0f6bcf337c5261c08fabe12982178c2c489d76</id>
<content type='text'>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>net: Conditional COBJS inclusion of network drivers</title>
<updated>2008-06-10T06:21:05+00:00</updated>
<author>
<name>Shinya Kuribayashi</name>
<email>skuribay@ruby.dti.ne.jp</email>
</author>
<published>2008-06-09T14:37:44+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=3b904ccb93c3196727e2e9870cb1df903cab19ad'/>
<id>3b904ccb93c3196727e2e9870cb1df903cab19ad</id>
<content type='text'>
Replace COBJS-y with appropriate driver config names.

Signed-off-by: Shinya Kuribayashi &lt;skuribay@ruby.dti.ne.jp&gt;
Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replace COBJS-y with appropriate driver config names.

Signed-off-by: Shinya Kuribayashi &lt;skuribay@ruby.dti.ne.jp&gt;
Signed-off-by: Ben Warren &lt;biggerbadderben@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix remaining CONFIG_COMMANDS</title>
<updated>2008-02-14T00:11:00+00:00</updated>
<author>
<name>Jean-Christophe PLAGNIOL-VILLARD</name>
<email>plagnioj@jcrosoft.com</email>
</author>
<published>2008-01-25T06:54:47+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=1b769881750030f10743808b9d6013e11f559350'/>
<id>1b769881750030f10743808b9d6013e11f559350</id>
<content type='text'>
update comments
Fix coding style

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
update comments
Fix coding style

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>drivers/net : move net drivers to drivers/net</title>
<updated>2007-11-25T17:35:17+00:00</updated>
<author>
<name>Jean-Christophe PLAGNIOL-VILLARD</name>
<email>plagnioj@jcrosoft.com</email>
</author>
<published>2007-11-21T20:19:24+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=2439e4bfa111babf4bc07ba20efbf3e36036813e'/>
<id>2439e4bfa111babf4bc07ba20efbf3e36036813e</id>
<content type='text'>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
