<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux.git/drivers/staging/frontier, branch v2.6.34</title>
<subtitle>Linux kernel source tree</subtitle>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/'/>
<entry>
<title>staging: make USB device id constant</title>
<updated>2010-03-04T00:42:42+00:00</updated>
<author>
<name>Németh Márton</name>
<email>nm127@freemail.hu</email>
</author>
<published>2010-01-09T23:18:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=a457732b836b970c82c7ba35b4cfc938c9c543f9'/>
<id>a457732b836b970c82c7ba35b4cfc938c9c543f9</id>
<content type='text'>
The id_table field of the struct usb_device_id is constant in &lt;linux/usb.h&gt;
so it is worth to make the initialization data also constant.

The semantic match that finds this kind of pattern is as follows:
(http://coccinelle.lip6.fr/)

// &lt;smpl&gt;
@r@
disable decl_init,const_decl_init;
identifier I1, I2, x;
@@
	struct I1 {
	  ...
	  const struct I2 *x;
	  ...
	};
@s@
identifier r.I1, y;
identifier r.x, E;
@@
	struct I1 y = {
	  .x = E,
	};
@c@
identifier r.I2;
identifier s.E;
@@
	const struct I2 E[] = ... ;
@depends on !c@
identifier r.I2;
identifier s.E;
@@
+	const
	struct I2 E[] = ...;
// &lt;/smpl&gt;

Signed-off-by: Németh Márton &lt;nm127@freemail.hu&gt;
Cc: Julia Lawall &lt;julia@diku.dk&gt;
Cc: cocci@diku.dk
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The id_table field of the struct usb_device_id is constant in &lt;linux/usb.h&gt;
so it is worth to make the initialization data also constant.

The semantic match that finds this kind of pattern is as follows:
(http://coccinelle.lip6.fr/)

// &lt;smpl&gt;
@r@
disable decl_init,const_decl_init;
identifier I1, I2, x;
@@
	struct I1 {
	  ...
	  const struct I2 *x;
	  ...
	};
@s@
identifier r.I1, y;
identifier r.x, E;
@@
	struct I1 y = {
	  .x = E,
	};
@c@
identifier r.I2;
identifier s.E;
@@
	const struct I2 E[] = ... ;
@depends on !c@
identifier r.I2;
identifier s.E;
@@
+	const
	struct I2 E[] = ...;
// &lt;/smpl&gt;

Signed-off-by: Németh Márton &lt;nm127@freemail.hu&gt;
Cc: Julia Lawall &lt;julia@diku.dk&gt;
Cc: cocci@diku.dk
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: remove unused #include &lt;linux/version.h&gt;'s</title>
<updated>2009-06-19T18:00:36+00:00</updated>
<author>
<name>Huang Weiyi</name>
<email>weiyi.huang@gmail.com</email>
</author>
<published>2009-04-06T09:20:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=727cbafa51bfaab788250bd3a3ba5e09f3bccf0b'/>
<id>727cbafa51bfaab788250bd3a3ba5e09f3bccf0b</id>
<content type='text'>
Remove unused #include &lt;linux/version.h&gt;'s.

Signed-off-by: Huang Weiyi &lt;weiyi.huang@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove unused #include &lt;linux/version.h&gt;'s.

Signed-off-by: Huang Weiyi &lt;weiyi.huang@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: frontier: Remove unused components of the alphatrack/tranzport sysfs interface.</title>
<updated>2009-04-03T21:53:32+00:00</updated>
<author>
<name>David Täht</name>
<email>d@teklibre.com</email>
</author>
<published>2009-01-20T14:33:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=dab8c35990692026fca989c3449fd67a59275c6a'/>
<id>dab8c35990692026fca989c3449fd67a59275c6a</id>
<content type='text'>
Signed-off-by: David Täht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: David Täht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: frontier: Make checkpatch.pl happy with alphatrack.h</title>
<updated>2009-04-03T21:53:32+00:00</updated>
<author>
<name>David Täht</name>
<email>d@teklibre.com</email>
</author>
<published>2009-01-20T14:33:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=a07998529bb6c4a4df97013d791a592c2b60ec78'/>
<id>a07998529bb6c4a4df97013d791a592c2b60ec78</id>
<content type='text'>
Signed-off-by: David Täht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: David Täht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: frontier: Updated documentation</title>
<updated>2009-04-03T21:53:32+00:00</updated>
<author>
<name>David Täht</name>
<email>d@teklibre.com</email>
</author>
<published>2009-01-20T14:33:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=b3bc12dac7e4045654ef4db49bef3e00e03e4452'/>
<id>b3bc12dac7e4045654ef4db49bef3e00e03e4452</id>
<content type='text'>
Signed-off-by: David Täht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: David Täht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: frontier: removed now unused frontier_compat.h file</title>
<updated>2009-04-03T21:53:32+00:00</updated>
<author>
<name>David Täht</name>
<email>d@teklibre.com</email>
</author>
<published>2009-01-20T14:33:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=7f84642b2f6524929738a4c005002637ecd4b16d'/>
<id>7f84642b2f6524929738a4c005002637ecd4b16d</id>
<content type='text'>
Signed-off-by: David Täht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

index 00450e6..0000000
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: David Täht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

index 00450e6..0000000
</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: frontier: Make checkpatch.pl much happier with alphatrack driver</title>
<updated>2009-04-03T21:53:31+00:00</updated>
<author>
<name>David Täht</name>
<email>d@teklibre.com</email>
</author>
<published>2009-01-20T14:33:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=f6a0ccadd1ab24818897fcbe039a248fee3cbd34'/>
<id>f6a0ccadd1ab24818897fcbe039a248fee3cbd34</id>
<content type='text'>
Signed-off-by: David Täht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: David Täht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: frontier: Make checkpatch.pl considerably happier with tranzport driver.</title>
<updated>2009-04-03T21:53:31+00:00</updated>
<author>
<name>David Täht</name>
<email>d@teklibre.com</email>
</author>
<published>2009-01-20T14:33:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=7c68d6b7171aa2f3d0c68b9ff54a2e1f0f0e228f'/>
<id>7c68d6b7171aa2f3d0c68b9ff54a2e1f0f0e228f</id>
<content type='text'>
Signed-off-by: David Täht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: David Täht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;

</pre>
</div>
</content>
</entry>
<entry>
<title>staging: __FUNCTION__ is gcc-specific, use __func__</title>
<updated>2009-01-07T23:48:54+00:00</updated>
<author>
<name>Harvey Harrison</name>
<email>harvey.harrison@gmail.com</email>
</author>
<published>2009-01-07T22:31:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=d599edcaea987e233fad808f88850f725e8a5530'/>
<id>d599edcaea987e233fad808f88850f725e8a5530</id>
<content type='text'>
Signed-off-by: Harvey Harrison &lt;harvey.harrison@gmail.com&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Harvey Harrison &lt;harvey.harrison@gmail.com&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Staging: frontier: fix compiler warnings</title>
<updated>2009-01-06T21:52:36+00:00</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@suse.de</email>
</author>
<published>2008-12-18T01:20:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=37bcd24b845abbfd85c838ee9ce07c2b254d3a05'/>
<id>37bcd24b845abbfd85c838ee9ce07c2b254d3a05</id>
<content type='text'>
Basically remove unused code and variables still hanging around.

Cc: David Taht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Basically remove unused code and variables still hanging around.

Cc: David Taht &lt;d@teklibre.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
</pre>
</div>
</content>
</entry>
</feed>
