<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux.git/drivers/staging/media/lirc, branch v4.14</title>
<subtitle>Linux kernel source tree</subtitle>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/'/>
<entry>
<title>media: lirc_zilog: driver only sends LIRCCODE</title>
<updated>2017-08-20T13:51:01+00:00</updated>
<author>
<name>Sean Young</name>
<email>sean@mess.org</email>
</author>
<published>2017-08-03T21:42:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=89d8a2cc51d1f29ea24a0b44dde13253141190a0'/>
<id>89d8a2cc51d1f29ea24a0b44dde13253141190a0</id>
<content type='text'>
This driver cannot send pulse, it only accepts driver-dependent codes.

Cc: &lt;stable@vger.kernel.org&gt; # v3.2
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This driver cannot send pulse, it only accepts driver-dependent codes.

Cc: &lt;stable@vger.kernel.org&gt; # v3.2
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>media: lirc_zilog: Clean up lirc zilog error codes</title>
<updated>2017-08-20T13:47:28+00:00</updated>
<author>
<name>Yves Lemée</name>
<email>yves.lemee.kernel@gmail.com</email>
</author>
<published>2017-07-12T19:17:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=a8c2d62b1bddf5fa4d23a380be8904e5593c2b40'/>
<id>a8c2d62b1bddf5fa4d23a380be8904e5593c2b40</id>
<content type='text'>
According the coding style guidelines, the ENOSYS error code must be
returned in case of a non existent system call. This code has been
replaced with the ENOTTY error code indicating a missing functionality.

Signed-off-by: Yves Lemée &lt;yves.lemee.kernel@gmail.com&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
According the coding style guidelines, the ENOSYS error code must be
returned in case of a non existent system call. This code has been
replaced with the ENOTTY error code indicating a missing functionality.

Signed-off-by: Yves Lemée &lt;yves.lemee.kernel@gmail.com&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[media] staging: remove todo and replace with lirc_zilog todo</title>
<updated>2017-06-06T12:18:08+00:00</updated>
<author>
<name>Sean Young</name>
<email>sean@mess.org</email>
</author>
<published>2017-05-17T17:32:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=614d651e1abda005ec9df5accef4b02aafcdf1ed'/>
<id>614d651e1abda005ec9df5accef4b02aafcdf1ed</id>
<content type='text'>
The lirc_zilog driver is the last remaining lirc driver, so the existing
todo is no longer relevant.

Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The lirc_zilog driver is the last remaining lirc driver, so the existing
todo is no longer relevant.

Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[media] lirc_zilog: Fix unbalanced braces around if/else</title>
<updated>2017-06-06T12:13:06+00:00</updated>
<author>
<name>Ricardo Silva</name>
<email>rjpdasilva@gmail.com</email>
</author>
<published>2017-05-15T19:40:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=da731edb5b7667d0752eeaf473896fc123b8e95f'/>
<id>da731edb5b7667d0752eeaf473896fc123b8e95f</id>
<content type='text'>
Fix all checkpatch reported issues for:

 * CHECK: "braces {} should be used on all arms of this statement".
 * CHECK: "Unbalanced braces around else statement".

Make sure all if/else statements are balanced in terms of braces. Most
cases in code are, but a few were left unbalanced, so put them all
consistent with the recommended style.

Signed-off-by: Ricardo Silva &lt;rjpdasilva@gmail.com&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix all checkpatch reported issues for:

 * CHECK: "braces {} should be used on all arms of this statement".
 * CHECK: "Unbalanced braces around else statement".

Make sure all if/else statements are balanced in terms of braces. Most
cases in code are, but a few were left unbalanced, so put them all
consistent with the recommended style.

Signed-off-by: Ricardo Silva &lt;rjpdasilva@gmail.com&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[media] lirc_zilog: Use sizeof(*p) instead of sizeof(struct P)</title>
<updated>2017-06-06T12:12:13+00:00</updated>
<author>
<name>Ricardo Silva</name>
<email>rjpdasilva@gmail.com</email>
</author>
<published>2017-05-15T19:40:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=d44e07c752ecfed1fb131cd0c5f103e299c22ab4'/>
<id>d44e07c752ecfed1fb131cd0c5f103e299c22ab4</id>
<content type='text'>
Fix all checkpatch reported issues for "CHECK: Prefer
kzalloc(sizeof(*&lt;p&gt;)...) over kzalloc(sizeof(struct &lt;P&gt;)...)".

Other similar case in the code already using recommended style, so make
it all consistent with the recommended practice.

Signed-off-by: Ricardo Silva &lt;rjpdasilva@gmail.com&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix all checkpatch reported issues for "CHECK: Prefer
kzalloc(sizeof(*&lt;p&gt;)...) over kzalloc(sizeof(struct &lt;P&gt;)...)".

Other similar case in the code already using recommended style, so make
it all consistent with the recommended practice.

Signed-off-by: Ricardo Silva &lt;rjpdasilva@gmail.com&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[media] lirc_zilog: Use __func__ for logging function name</title>
<updated>2017-06-06T12:11:48+00:00</updated>
<author>
<name>Ricardo Silva</name>
<email>rjpdasilva@gmail.com</email>
</author>
<published>2017-05-15T19:40:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=41a603f8d94c6e7627ddd4e13763b4523aa473ac'/>
<id>41a603f8d94c6e7627ddd4e13763b4523aa473ac</id>
<content type='text'>
Fix all checkpatch reported issues for "CHECK: Prefer using '"%s...",
__func__' to using '&lt;func_name&gt;', ..."

Use recommended style. Additionally, __func__ was already used in
similar cases throughout the code, so make it all consistent.

Signed-off-by: Ricardo Silva &lt;rjpdasilva@gmail.com&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix all checkpatch reported issues for "CHECK: Prefer using '"%s...",
__func__' to using '&lt;func_name&gt;', ..."

Use recommended style. Additionally, __func__ was already used in
similar cases throughout the code, so make it all consistent.

Signed-off-by: Ricardo Silva &lt;rjpdasilva@gmail.com&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[media] lirc_zilog: Fix NULL comparisons style</title>
<updated>2017-06-06T12:11:13+00:00</updated>
<author>
<name>Ricardo Silva</name>
<email>rjpdasilva@gmail.com</email>
</author>
<published>2017-05-15T19:40:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=28b671b4bac52b4ad8e1a9e8aa7514da7efe924d'/>
<id>28b671b4bac52b4ad8e1a9e8aa7514da7efe924d</id>
<content type='text'>
Fix all checkpatch reported issues for "CHECK: Comparison to NULL could
be written...".

Do these comparisons using the recommended coding style and consistent
with other similar cases in the file, which already used the recommended
way.

Signed-off-by: Ricardo Silva &lt;rjpdasilva@gmail.com&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix all checkpatch reported issues for "CHECK: Comparison to NULL could
be written...".

Do these comparisons using the recommended coding style and consistent
with other similar cases in the file, which already used the recommended
way.

Signed-off-by: Ricardo Silva &lt;rjpdasilva@gmail.com&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[media] lirc_zilog: Fix whitespace style checks</title>
<updated>2017-06-06T12:10:46+00:00</updated>
<author>
<name>Ricardo Silva</name>
<email>rjpdasilva@gmail.com</email>
</author>
<published>2017-05-15T19:40:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=32ddcbb5b8dc10bf922ff3a6666cb3748efca388'/>
<id>32ddcbb5b8dc10bf922ff3a6666cb3748efca388</id>
<content type='text'>
Fix style issues reported by checkpatch, affecting whitespace only:

 * CHECK: "Please don't use multiple blank lines".
   Two of these still triggering and left untouched because used for
   separating logical blocks (vars from functions, etc.).

 * CHECK: "spaces preferred around that '&lt;operator&gt;'".
   All fixed.

 * CHECK: "Alignment should match open parenthesis".
   All fixed except one on line 1161, left untouched for readability.

Move towards recommended coding style without compromising readability.

Signed-off-by: Ricardo Silva &lt;rjpdasilva@gmail.com&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix style issues reported by checkpatch, affecting whitespace only:

 * CHECK: "Please don't use multiple blank lines".
   Two of these still triggering and left untouched because used for
   separating logical blocks (vars from functions, etc.).

 * CHECK: "spaces preferred around that '&lt;operator&gt;'".
   All fixed.

 * CHECK: "Alignment should match open parenthesis".
   All fixed except one on line 1161, left untouched for readability.

Move towards recommended coding style without compromising readability.

Signed-off-by: Ricardo Silva &lt;rjpdasilva@gmail.com&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[media] lirc_zilog: remove module parameter minor</title>
<updated>2017-06-06T12:03:39+00:00</updated>
<author>
<name>David Härdeman</name>
<email>david@hardeman.nu</email>
</author>
<published>2017-05-01T16:04:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=bd16168da80dde6cfc6b7f89959206b74409cb86'/>
<id>bd16168da80dde6cfc6b7f89959206b74409cb86</id>
<content type='text'>
Always let the kernel decide what minor the lirc chardev gets.

Signed-off-by: David Härdeman &lt;david@hardeman.nu&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Always let the kernel decide what minor the lirc chardev gets.

Signed-off-by: David Härdeman &lt;david@hardeman.nu&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[media] lirc_dev: remove sampling kthread</title>
<updated>2017-06-06T12:00:56+00:00</updated>
<author>
<name>David Härdeman</name>
<email>david@hardeman.nu</email>
</author>
<published>2017-05-01T16:03:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=c3104e1b42744156c414003043587d128de2b91f'/>
<id>c3104e1b42744156c414003043587d128de2b91f</id>
<content type='text'>
There are no drivers which use this functionality.

Signed-off-by: David Härdeman &lt;david@hardeman.nu&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There are no drivers which use this functionality.

Signed-off-by: David Härdeman &lt;david@hardeman.nu&gt;
Signed-off-by: Sean Young &lt;sean@mess.org&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
