<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux-dev/drivers/staging/i4l, branch master</title>
<subtitle>Linux kernel development work - see feature branches</subtitle>
<id>https://git.zx2c4.com/linux-dev/atom/drivers/staging/i4l?h=master</id>
<link rel='self' href='https://git.zx2c4.com/linux-dev/atom/drivers/staging/i4l?h=master'/>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/'/>
<updated>2017-01-05T20:59:37Z</updated>
<entry>
<title>staging: i4l: delete the whole thing</title>
<updated>2017-01-05T20:59:37Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2017-01-05T20:59:37Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=02bbd9802da76dcfa422e1a9e9336253ecab4b6f'/>
<id>urn:sha1:02bbd9802da76dcfa422e1a9e9336253ecab4b6f</id>
<content type='text'>
It's now 2017, and a new LTS kernel has been chosen, so let's do what we
said we would do in the TODO file and delete this code.  If it's still
needed, and a maintainer steps up to take it over, we will easily revert
it.

Cc: Arnd Bergmann &lt;arnd@arndb.de&gt;
Cc: Karsten Keil &lt;isdn@linux-pingi.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: i4l: pcbit: remove duplicated include from capi.c</title>
<updated>2016-10-25T07:59:48Z</updated>
<author>
<name>Wei Yongjun</name>
<email>weiyongjun1@huawei.com</email>
</author>
<published>2016-10-18T14:37:10Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=b26639697b1274cbce4eab54ae7d69c0a35e2f0e'/>
<id>urn:sha1:b26639697b1274cbce4eab54ae7d69c0a35e2f0e</id>
<content type='text'>
Remove duplicated include.

Signed-off-by: Wei Yongjun &lt;weiyongjun1@huawei.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: i4l: pcbit: drv: remove duplicated include from drv.c</title>
<updated>2016-10-25T07:59:48Z</updated>
<author>
<name>Wei Yongjun</name>
<email>weiyongjun1@huawei.com</email>
</author>
<published>2016-10-18T14:37:26Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=c536c5de34580f23573805ee4ec3a7600e3f44f8'/>
<id>urn:sha1:c536c5de34580f23573805ee4ec3a7600e3f44f8</id>
<content type='text'>
Remove duplicated include.

Signed-off-by: Wei Yongjun &lt;weiyongjun1@huawei.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: i4l: pcbit: replace some include asm/*.h with linux/*.h</title>
<updated>2016-10-16T08:27:26Z</updated>
<author>
<name>Alexander Alemayhu</name>
<email>alexander@alemayhu.com</email>
</author>
<published>2016-10-13T03:57:20Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=4b6588dc2fedff4dc95095f1157e778611e440be'/>
<id>urn:sha1:4b6588dc2fedff4dc95095f1157e778611e440be</id>
<content type='text'>
Fixes the following checkpatch output:

./pcbit/capi.c:39: WARNING: Use #include &lt;linux/io.h&gt; instead of &lt;asm/io.h&gt;
./pcbit/capi.c:40: WARNING: Use #include &lt;linux/string.h&gt; instead of &lt;asm/string.h&gt;
./pcbit/callbacks.c:25: WARNING: Use #include &lt;linux/io.h&gt; instead of &lt;asm/io.h&gt;
./pcbit/layer2.c:39: WARNING: Use #include &lt;linux/io.h&gt; instead of &lt;asm/io.h&gt;
./pcbit/drv.c:34: WARNING: Use #include &lt;linux/string.h&gt; instead of &lt;asm/string.h&gt;
./pcbit/drv.c:35: WARNING: Use #include &lt;linux/io.h&gt; instead of &lt;asm/io.h&gt;
./pcbit/edss1.c:26: WARNING: Use #include &lt;linux/io.h&gt; instead of &lt;asm/io.h&gt;

Signed-off-by: Alexander Alemayhu &lt;alexander@alemayhu.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: i4l: remove parens around return statement</title>
<updated>2016-10-16T08:26:02Z</updated>
<author>
<name>Elizabeth Ferdman</name>
<email>gnudevliz@gmail.com</email>
</author>
<published>2016-10-09T18:35:54Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=06d1f85e8118d9fb715891652e6dde2afda066b4'/>
<id>urn:sha1:06d1f85e8118d9fb715891652e6dde2afda066b4</id>
<content type='text'>
Remove parentheses surrounding return statements. Error found by
checkpatch.

changes made using coccinelle script:

@@
expression e,e1;
@@
(
return (e / e1);
|
return
-(
e
-)
;
)

Signed-off-by: Elizabeth Ferdman &lt;gnudevliz@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: i4l: icn: Fixed open brace should be on previous line error</title>
<updated>2016-10-16T08:26:00Z</updated>
<author>
<name>Harman Kalra</name>
<email>harman4linux@gmail.com</email>
</author>
<published>2016-10-09T15:35:04Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=5e5a1138ff09dd3d2ad683f6d40f8d2dd08f1559'/>
<id>urn:sha1:5e5a1138ff09dd3d2ad683f6d40f8d2dd08f1559</id>
<content type='text'>
This patch resolves the following error caught by checkpatch.pl:
ERROR: that open brace { should be on the previous line

Signed-off-by: Harman Kalra &lt;harman4linux@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: i4l: icn: prefer pr_* instead of printk</title>
<updated>2016-10-16T08:25:59Z</updated>
<author>
<name>Harman Kalra</name>
<email>harman4linux@gmail.com</email>
</author>
<published>2016-10-09T15:35:03Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=bdb2a2ff2c8dfb32c4d52a36e29efc649f2205b0'/>
<id>urn:sha1:bdb2a2ff2c8dfb32c4d52a36e29efc649f2205b0</id>
<content type='text'>
This patch replaces call to  printk with  appropriate pr_*
function thus addressing the following warning generated by the
checkpatch script:
Prefer [subsystem eg: netdev]_dbg([subsystem]dev, ... then
        dev_dbg(dev, ... then pr_debug(...  to printk(KERN_DEBUG ...

Signed-off-by: Harman Kalra &lt;harman4linux@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Staging: i4l: icn: Fixed open brace should be on previous line error</title>
<updated>2016-10-16T08:25:58Z</updated>
<author>
<name>Harman Kalra</name>
<email>harman4linux@gmail.com</email>
</author>
<published>2016-10-09T15:35:02Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=db0e8e5732c378393968dfa4fa89153b9d515d60'/>
<id>urn:sha1:db0e8e5732c378393968dfa4fa89153b9d515d60</id>
<content type='text'>
This patch resolves the following error caught by checkpatch.pl:
ERROR: that open brace { should be on the previous line

Signed-off-by: Harman Kalra &lt;harman4linux@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: i4l: add blank line after declarations</title>
<updated>2016-10-16T08:25:06Z</updated>
<author>
<name>Elizabeth Ferdman</name>
<email>gnudevliz@gmail.com</email>
</author>
<published>2016-10-06T21:44:28Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=06e0f0f053243abf7f6daf9f152a64b3fd4b882e'/>
<id>urn:sha1:06e0f0f053243abf7f6daf9f152a64b3fd4b882e</id>
<content type='text'>
Fix checkpatch error "missing blank line after declarations" to conform
to kernel coding style.

Signed-off-by: Elizabeth Ferdman &lt;gnudevliz@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: i4l: move open brace to previous line</title>
<updated>2016-10-16T08:25:06Z</updated>
<author>
<name>Elizabeth Ferdman</name>
<email>gnudevliz@gmail.com</email>
</author>
<published>2016-10-06T21:41:18Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/linux-dev/commit/?id=8ba392d151c5875bf8e580634cc6837b2a029207'/>
<id>urn:sha1:8ba392d151c5875bf8e580634cc6837b2a029207</id>
<content type='text'>
Fix checkpatch error "open brace should be on previous line" since only
functions should have their opening brace on a new line.

Signed-off-by: Elizabeth Ferdman &lt;gnudevliz@gmail.com&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
</feed>
