<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/staging/rtl8723bs/hal, branch master</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/
</subtitle>
<id>https://git.shady.money/linux/atom?h=master</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2026-03-31T08:41:48Z</updated>
<entry>
<title>staging: rtl8723bs: remove unused RTL8188E antenna selection macros</title>
<updated>2026-03-31T08:41:48Z</updated>
<author>
<name>Mashiro Chen</name>
<email>mashiro.chen@mailbox.org</email>
</author>
<published>2026-03-31T05:04:34Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=f019e98a2f35ec022872d8843ff9c9c9af90e6ec'/>
<id>urn:sha1:f019e98a2f35ec022872d8843ff9c9c9af90e6ec</id>
<content type='text'>
Remove the SET_TX_DESC_ANTSEL_{A,B,C}_88E macros from odm_types.h.
These are leftover dead code for the RTL8188E chip and have no callers
in the rtl8723bs driver. The RTL8188E is a different chip family and
has its own driver at drivers/net/wireless/realtek/rtl8xxxu

This addresses the TODO item "find and remove any code for other chips
that is left over".

Signed-off-by: Mashiro Chen &lt;mashiro.chen@mailbox.org&gt;
Link: https://patch.msgid.link/20260331050434.102744-1-mashiro.chen@mailbox.org
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: rtl8723bs: rename variables to snake_case</title>
<updated>2026-03-31T08:34:19Z</updated>
<author>
<name>David Holland</name>
<email>david@cardinalsystem.net</email>
</author>
<published>2026-03-27T20:36:36Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=a5a1b468de7555c15f4b1a14d4ca443bd194a299'/>
<id>urn:sha1:a5a1b468de7555c15f4b1a14d4ca443bd194a299</id>
<content type='text'>
The Linux kernel coding style guidelines prohibit the use of CamelCase
variable names. All variables should be snakecase.

Rename the 'ChipVersion' parameter to 'chip_version' and the
'AutoLoadFail' parameter to 'auto_load_fail' in hal_com.c to adhere to
the standard snakecase naming convention.

Signed-off-by: David Holland &lt;david@cardinalsystem.net&gt;
Link: https://patch.msgid.link/20260327203636.24891-1-david@cardinalsystem.net
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: rtl8723bs: remove unused arg at odm_interface.h</title>
<updated>2026-03-31T08:33:57Z</updated>
<author>
<name>Rodrigo Gobbi</name>
<email>rodrigo.gobbi.7@gmail.com</email>
</author>
<published>2026-03-25T21:21:08Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=6671dbbb12513e79ccaccbf799b7b56ae28bb20f'/>
<id>urn:sha1:6671dbbb12513e79ccaccbf799b7b56ae28bb20f</id>
<content type='text'>
The header file uses some macros to create proper constants for
ODM_REG and ODM_SET but current macros were not using _ic_type,
leading to a checkpatch warn:

WARNING: Argument '_ic_type' is not used in function-like macro

Remove that arg, currently there is no support for per ic type

Signed-off-by: Rodrigo Gobbi &lt;rodrigo.gobbi.7@gmail.com&gt;
Link: https://patch.msgid.link/20260325212826.20309-1-rodrigo.gobbi.7@gmail.com
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: rtl8723bs: Remove dead code</title>
<updated>2026-03-31T08:29:06Z</updated>
<author>
<name>Bera Yüzlü</name>
<email>b9788213@gmail.com</email>
</author>
<published>2026-03-18T19:50:05Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=092ba18dddaa0ac5be82d1d747764cdb5eafeab0'/>
<id>urn:sha1:092ba18dddaa0ac5be82d1d747764cdb5eafeab0</id>
<content type='text'>
Clean up the dm_odm_t structure by removing commented-out members and
related legacy comments.

Signed-off-by: Bera Yüzlü &lt;b9788213@gmail.com&gt;
Reviewed-by: Ethan Tidmore &lt;ethantidmore06@gmail.com&gt;
Link: https://patch.msgid.link/20260318195005.23962-1-b9788213@gmail.com
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: rtl8723bs: add missing blank lines after declarations</title>
<updated>2026-03-18T15:58:18Z</updated>
<author>
<name>Oskar Ray-Frayssinet</name>
<email>rayfraytech@gmail.com</email>
</author>
<published>2026-03-14T12:23:25Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=82e1c68ac206efe42854296c462aa83f541ea22c'/>
<id>urn:sha1:82e1c68ac206efe42854296c462aa83f541ea22c</id>
<content type='text'>
Add missing blank lines after variable declarations in several files
throughout the rtl8723bs driver to comply with kernel coding style.

Signed-off-by: Oskar Ray-Frayssinet &lt;rayfraytech@gmail.com&gt;
Reviewed-by: Ethan Tidmore &lt;ethantidmore06@gmail.com&gt;
Link: https://patch.msgid.link/20260314122325.7877-1-rayfraytech@gmail.com
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: rtl8723bs: change custom comparing function to strcmp()</title>
<updated>2026-03-18T15:52:46Z</updated>
<author>
<name>Bera Yüzlü</name>
<email>b9788213@gmail.com</email>
</author>
<published>2026-03-09T18:45:56Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=97eef87a546e665f62c4c5500b2381a3c90c0ef1'/>
<id>urn:sha1:97eef87a546e665f62c4c5500b2381a3c90c0ef1</id>
<content type='text'>
eqNByte() function is a redundant reimplementation of strcmp().
Remove eqNByte() and switch its usages to strcmp().
No functional change.

Reviewed-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;
Signed-off-by: Bera Yüzlü &lt;b9788213@gmail.com&gt;
Link: https://patch.msgid.link/20260309184556.846-2-b9788213@gmail.com
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: rtl8723bs: Remove space in the line start</title>
<updated>2026-03-18T15:49:01Z</updated>
<author>
<name>Bera Yüzlü</name>
<email>b9788213@gmail.com</email>
</author>
<published>2026-03-10T12:55:57Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=3f7004a175ecc18d36f25c1ede7f9804c4ea3b89'/>
<id>urn:sha1:3f7004a175ecc18d36f25c1ede7f9804c4ea3b89</id>
<content type='text'>
Remove a space in the line start to follow kernel coding style.
Reported by checkpatch.pl.

Signed-off-by: Bera Yüzlü &lt;b9788213@gmail.com&gt;
Reviewed-by: Nikolay Kulikov &lt;nikolayof23@gmail.com&gt;
Link: https://patch.msgid.link/20260310125556.874-2-b9788213@gmail.com
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: rtl8723bs: remove unnecessary braces</title>
<updated>2026-03-09T16:50:11Z</updated>
<author>
<name>Gopi Krishna Menon</name>
<email>krishnagopi487@gmail.com</email>
</author>
<published>2026-03-08T03:16:38Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=78285e5830e6cc24bc987da9007e3e039a125cf0'/>
<id>urn:sha1:78285e5830e6cc24bc987da9007e3e039a125cf0</id>
<content type='text'>
Checkpatch reports the following warning in odm_DIG.c

WARNING: braces {} are not necessary for single statement blocks

Remove unnecessary braces from single line conditional statements in
odm_DIG.c to fix checkpatch warning.

Suggested-by: Bera Yüzlü &lt;b9788213@gmail.com&gt;
Signed-off-by: Gopi Krishna Menon &lt;krishnagopi487@gmail.com&gt;
Link: https://patch.msgid.link/20260308031704.4907-1-krishnagopi487@gmail.com
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: rtl8723bs: remove unnecessary braces</title>
<updated>2026-03-09T16:49:26Z</updated>
<author>
<name>Zeynep Dicle</name>
<email>zeynep.dicle.dev@gmail.com</email>
</author>
<published>2026-03-04T17:19:41Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=ba6d4760e2686c319b27c704fb2acba814b03c6e'/>
<id>urn:sha1:ba6d4760e2686c319b27c704fb2acba814b03c6e</id>
<content type='text'>
Remove unnecessary braces to obey Linux coding style and also fix
the following checkpatch issue:

WARNING: braces {} are not necessary for any arm of this statement

Signed-off-by: Zeynep Dicle &lt;zeynep.dicle.dev@gmail.com&gt;
Reviewed-by: Ethan Tidmore &lt;ethantidmore06@gmail.com&gt;
Link: https://patch.msgid.link/20260304171941.594-1-zeynep.dicle.dev@gmail.com
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>staging: rtl8723bs: refactor halbtc8723b1ant_CoexTableWithType() to remove duplication</title>
<updated>2026-03-09T16:05:52Z</updated>
<author>
<name>Bera Yüzlü</name>
<email>b9788213@gmail.com</email>
</author>
<published>2026-02-26T13:02:53Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=d3bc73362751c4399b5ca78fe8360dbe9c7cd0c5'/>
<id>urn:sha1:d3bc73362751c4399b5ca78fe8360dbe9c7cd0c5</id>
<content type='text'>
Replace the verbose switch-case block with a constant 2D array lookup.
This makes the function much more concise and easier to read without
changing the underlying behavior.

Signed-off-by: Bera Yüzlü &lt;b9788213@gmail.com&gt;
Link: https://patch.msgid.link/20260226130253.2145-1-b9788213@gmail.com
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;
</content>
</entry>
</feed>
