<feed xmlns='http://www.w3.org/2005/Atom'>
<title>user/sven/linux.git/include/linux/of_mtd.h, branch stable/4.3.y</title>
<subtitle>Linux Kernel
</subtitle>
<id>https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=stable%2F4.3.y</id>
<link rel='self' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=stable%2F4.3.y'/>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/'/>
<updated>2014-03-11T05:42:28Z</updated>
<entry>
<title>of_mtd: Add helpers to get ECC strength and ECC step size</title>
<updated>2014-03-11T05:42:28Z</updated>
<author>
<name>Ezequiel Garcia</name>
<email>ezequiel.garcia@free-electrons.com</email>
</author>
<published>2014-02-24T22:24:48Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=6d9434ebb76157071164b32ad03fbed165c74382'/>
<id>urn:sha1:6d9434ebb76157071164b32ad03fbed165c74382</id>
<content type='text'>
This commit adds simple helpers to obtain the devicetree properties
that specify the ECC strength and ECC step size to use on a given
NAND controller.

Acked-by: Boris BREZILLON &lt;b.brezillon.dev@gmail.com&gt;
Signed-off-by: Ezequiel Garcia &lt;ezequiel.garcia@free-electrons.com&gt;
Signed-off-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
</content>
</entry>
<entry>
<title>of_mtd: fix header file include guard</title>
<updated>2014-01-03T19:22:21Z</updated>
<author>
<name>Philipp Rosenberger</name>
<email>philipp.rosenberger@xse.de</email>
</author>
<published>2013-11-28T11:36:52Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=e0b6047b73278d165ae0ad448177209a3c2067ad'/>
<id>urn:sha1:e0b6047b73278d165ae0ad448177209a3c2067ad</id>
<content type='text'>
It seems the include guard was copied from of_net.h.

Signed-off-by: Philipp Rosenberger &lt;philipp.rosenberger@xse.de&gt;
Signed-off-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
</content>
</entry>
<entry>
<title>of_mtd: Add no-op stubs to support CONFIG_OF=n</title>
<updated>2013-10-27T23:26:58Z</updated>
<author>
<name>Ezequiel Garcia</name>
<email>ezequiel.garcia@free-electrons.com</email>
</author>
<published>2013-09-03T02:37:53Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=a6eaa2ae7820f0cca742917f85f34ef1eed2c95d'/>
<id>urn:sha1:a6eaa2ae7820f0cca742917f85f34ef1eed2c95d</id>
<content type='text'>
Just like the rest of the subsystems, let's add the required no-op
functions to implement stubs when CONFIG_OF=n.

This prevents MTD drivers from having ugly ifdefs in their code,
and instead hide the ifdef monster in the header closet (far away
from people's sight).

Signed-off-by: Ezequiel Garcia &lt;ezequiel.garcia@free-electrons.com&gt;
Signed-off-by: Brian Norris &lt;computersforpeace@gmail.com&gt;
</content>
</entry>
<entry>
<title>of: mtd: nuke useless const qualifier</title>
<updated>2012-07-10T15:32:06Z</updated>
<author>
<name>Artem Bityutskiy</name>
<email>artem.bityutskiy@linux.intel.com</email>
</author>
<published>2012-07-10T13:35:50Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=e95d8aafa5d911bf523bc47fe89f3336eb8a1b51'/>
<id>urn:sha1:e95d8aafa5d911bf523bc47fe89f3336eb8a1b51</id>
<content type='text'>
This patch does the following:
 -const int of_get_nand_ecc_mode(struct device_node *np)
 +int of_get_nand_ecc_mode(struct device_node *np)

because:
1. it is probably just a typo?
2. it causes warnings like this when people assing the returned
   value to an 'int' variable:
   include/linux/of_mtd.h:14:18: warning: type qualifiers ignored on functi=
on return type [-Wignored-qualifiers]

Remove also the unnecessary "extern" qualifier to be consistent with other
declarations in this file.

Signed-off-by: Artem Bityutskiy &lt;artem.bityutskiy@linux.intel.com&gt;
Signed-off-by: Rob Herring &lt;rob.herring@calxeda.com&gt;
</content>
</entry>
<entry>
<title>of/mtd/nand: add generic bindings and helpers</title>
<updated>2012-03-15T15:28:19Z</updated>
<author>
<name>Jean-Christophe PLAGNIOL-VILLARD</name>
<email>plagnioj@jcrosoft.com</email>
</author>
<published>2012-01-28T04:12:36Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=770d7c39af940da24dd4c2c048576d778ac0abd4'/>
<id>urn:sha1:770d7c39af940da24dd4c2c048576d778ac0abd4</id>
<content type='text'>
- nand-ecc-mode : String, operation mode of the NAND ecc mode.
  Supported values are: "none", "soft", "hw", "hw_syndrome", "hw_oob_first",
  "soft_bch".
- nand-bus-width : 8 or 16 bus width if not present 8
- nand-on-flash-bbt: boolean to enable on flash bbt option if not present false

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD &lt;plagnioj@jcrosoft.com&gt;
Acked-by: Grant Likely &lt;grant.likely@secretlab.ca&gt;
Acked-by: Stefan Roese &lt;sr@denx.de&gt;
</content>
</entry>
</feed>
