<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux.git/drivers/staging/rtl8723bs/hal, branch v4.19</title>
<subtitle>Linux kernel source tree</subtitle>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/'/>
<entry>
<title>staging: rtl8188eu/rtl8723bs: fix character encoding</title>
<updated>2018-07-24T11:55:05+00:00</updated>
<author>
<name>Arnd Bergmann</name>
<email>arnd@arndb.de</email>
</author>
<published>2018-07-24T11:13:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=51a2ee0a4e62961131879f8f315052c48265829d'/>
<id>51a2ee0a4e62961131879f8f315052c48265829d</id>
<content type='text'>
drivers/staging/rtl8188eu/include/odm.h uses an incorrect encoding
for the '...' character in two comments, which makes it one of the
few non-UTF-8 source files.

This removes the odd characters and uses the same ASCII representation
that we have in the regular rtlwifi driver. The second instance
of drivers/staging/rtl8723bs/hal/odm.h is garbled in a different way,
so I change it to be the same as well even though it is already
plain ASCII.

Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
drivers/staging/rtl8188eu/include/odm.h uses an incorrect encoding
for the '...' character in two comments, which makes it one of the
few non-UTF-8 source files.

This removes the odd characters and uses the same ASCII representation
that we have in the regular rtlwifi driver. The second instance
of drivers/staging/rtl8723bs/hal/odm.h is garbled in a different way,
so I change it to be the same as well even though it is already
plain ASCII.

Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8723bs: Add missing curly braces on else statement.</title>
<updated>2018-06-28T13:03:16+00:00</updated>
<author>
<name>Quytelda Kahja</name>
<email>quytelda@tamalin.org</email>
</author>
<published>2018-06-17T05:30:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=8cc46a2cc2a1060538e7051f54bd921e8575f039'/>
<id>8cc46a2cc2a1060538e7051f54bd921e8575f039</id>
<content type='text'>
Fix 'braces {} should be used on all arms of this statement' coding
style problem in 'phy_get_tx_pwr_lmt()'.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix 'braces {} should be used on all arms of this statement' coding
style problem in 'phy_get_tx_pwr_lmt()'.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8723bs: Merge workaround conditionals into single else-if.</title>
<updated>2018-06-28T13:03:16+00:00</updated>
<author>
<name>Quytelda Kahja</name>
<email>quytelda@tamalin.org</email>
</author>
<published>2018-06-17T05:30:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=904604397d163ca391862b7c71d3387416463aab'/>
<id>904604397d163ca391862b7c71d3387416463aab</id>
<content type='text'>
The if conditionals used to work around wrong TX power limit indices
can be condensed into a single if/else-if statement for more concise
expression.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The if conditionals used to work around wrong TX power limit indices
can be condensed into a single if/else-if statement for more concise
expression.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8723bs: Merge conditionals with similar bodies.</title>
<updated>2018-06-28T13:03:16+00:00</updated>
<author>
<name>Quytelda Kahja</name>
<email>quytelda@tamalin.org</email>
</author>
<published>2018-06-17T05:30:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=f5746848212021db200ad6a24d394cbadf4f17cf'/>
<id>f5746848212021db200ad6a24d394cbadf4f17cf</id>
<content type='text'>
Two conditionals that set 'channel' based on 'band_type' in
'phy_get_tx_pwr_lmt()' can be simplified into one single-line conditional.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Two conditionals that set 'channel' based on 'band_type' in
'phy_get_tx_pwr_lmt()' can be simplified into one single-line conditional.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8723bs: Fix spelling mistake in comment.</title>
<updated>2018-06-28T13:03:16+00:00</updated>
<author>
<name>Quytelda Kahja</name>
<email>quytelda@tamalin.org</email>
</author>
<published>2018-06-17T05:30:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=871081d4e95778120b7dbe150b627a6b854e3141'/>
<id>871081d4e95778120b7dbe150b627a6b854e3141</id>
<content type='text'>
Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8723bs: Move bandwidth index lookup to new function.</title>
<updated>2018-06-28T13:03:16+00:00</updated>
<author>
<name>Quytelda Kahja</name>
<email>quytelda@tamalin.org</email>
</author>
<published>2018-06-17T05:30:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=81dff62b3d03e9050a6ab4da3d1c8fd8f14b2495'/>
<id>81dff62b3d03e9050a6ab4da3d1c8fd8f14b2495</id>
<content type='text'>
Factoring out the conditional lookup of bandwidth index into the power
limit table into it's own function simplifies the logic of
'phy_get_tx_pwr_lmt()'.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Factoring out the conditional lookup of bandwidth index into the power
limit table into it's own function simplifies the logic of
'phy_get_tx_pwr_lmt()'.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8723bs: Move rate section index lookup to new function.</title>
<updated>2018-06-28T13:03:16+00:00</updated>
<author>
<name>Quytelda Kahja</name>
<email>quytelda@tamalin.org</email>
</author>
<published>2018-06-17T05:30:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=9ca65c3041fd296af74ff7e356865217fba58e50'/>
<id>9ca65c3041fd296af74ff7e356865217fba58e50</id>
<content type='text'>
The rate section lookup is a large switch statement in the middle of
'phy_get_tx_pwr_lmt()'; refactor this statement into it's own function
for increased readability.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The rate section lookup is a large switch statement in the middle of
'phy_get_tx_pwr_lmt()'; refactor this statement into it's own function
for increased readability.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8723bs: Remove empty else-if conditional.</title>
<updated>2018-06-28T13:03:16+00:00</updated>
<author>
<name>Quytelda Kahja</name>
<email>quytelda@tamalin.org</email>
</author>
<published>2018-06-17T05:30:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=ac41f631d4187f072e9e693fbdb4423e2e0f0e00'/>
<id>ac41f631d4187f072e9e693fbdb4423e2e0f0e00</id>
<content type='text'>
This else-if conditional block does nothing; remove it.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This else-if conditional block does nothing; remove it.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8723bs: Combine if statements with equivalent body.</title>
<updated>2018-06-28T13:03:16+00:00</updated>
<author>
<name>Quytelda Kahja</name>
<email>quytelda@tamalin.org</email>
</author>
<published>2018-06-17T05:30:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=fdf620d6970c93d9bfe8975130d49d2a060153c1'/>
<id>fdf620d6970c93d9bfe8975130d49d2a060153c1</id>
<content type='text'>
Two if statements that carry out the same operation can be combined with
a logical OR.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Two if statements that carry out the same operation can be combined with
a logical OR.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>staging: rtl8723bs: Fix camel-case names in phy_get_tx_pwr_lmt().</title>
<updated>2018-06-28T13:03:16+00:00</updated>
<author>
<name>Quytelda Kahja</name>
<email>quytelda@tamalin.org</email>
</author>
<published>2018-06-17T05:30:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tavy.me/linux.git/commit/?id=717209ec616cb4216732e4598afd4aa587ea54c2'/>
<id>717209ec616cb4216732e4598afd4aa587ea54c2</id>
<content type='text'>
Change camel-case names to snake-case names; to avoid variable name
conflicts, rename table index variables to idx_*.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change camel-case names to snake-case names; to avoid variable name
conflicts, rename table index variables to idx_*.

Signed-off-by: Quytelda Kahja &lt;quytelda@tamalin.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</pre>
</div>
</content>
</entry>
</feed>
