78 Commits

Author SHA1 Message Date
amazingfate
ac64712f67 fix build for kernel 6.14 2025-02-16 17:07:30 +08:00
amazingfate
4b8d758f42 fix build for kernel 6.13
.set_monitor_channel has been updated since v6.13:
9c4f830927
2024-12-23 19:35:12 +08:00
lwfinger
52e593e8c8
Merge pull request #45 from Jookia/fix-kernel67
Fix version check for change_beacon it should be 6.7
2023-11-14 15:34:33 -06:00
Jookia
2906e202e8 Fix version check for change_beacon it should be 6.7 2023-11-14 22:18:15 +11:00
lwfinger
d89bde02d0
Merge pull request #43 from Jookia/fix-kernel65
Fix cfg80211_rtw_change_beacon on kernel 6.5
2023-11-13 11:57:40 -06:00
Jookia
31100220eb Fix cfg80211_rtw_change_beacon on kernel 6.5 2023-11-13 23:26:58 +11:00
Larry Finger
47ce045cd8 rtl8723ds: Fix warning in do_div
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2023-08-01 12:38:20 -05:00
lwfinger
c65bc55a36
Merge pull request #38 from radxa-pkg/master
Support building as a Debian DKMS package
2023-05-05 11:36:23 -05:00
ZHANG Yuntian
339d6c4d89 rtl8723ds: Update comments with UTF-8 encoding
When packaging the source as a Debian DKMS package, lintian will warn
national-encoding due to Big5 encoded characters in comments.

Update to English comments from other files when available, and
reencode Chinese in UTF-8.

Signed-off-by: ZHANG Yuntian <yt@radxa.com>
2023-05-05 14:35:35 +08:00
Larry Finger
42fdd132e9 rtl8723ds: Check ssids in cfg80211_rtw_scan()
This should be the fix for Issue #36

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2023-04-12 12:56:08 -05:00
Larry Finger
ec85dc6b9f rtl8723ds: Add COPTING file
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2023-02-05 14:03:40 -06:00
Larry Finger
1a8f8b1557 rtl8723ds: Clean up some Coverity and Smatch warnings
The includes turning CONGIG_MP_INCLUDED off.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2023-02-03 19:28:56 -06:00
lwfinger
a638cc8639
Merge pull request #32 from giuliobenetti/fix/powerpc
rtl8723ds: get_ra() exists only on PowerPC
2022-12-01 12:27:01 -06:00
Giulio Benetti
aaf31f36eb rtl8723ds: get_ra() exists only on PowerPC
In PowerPc Linux only get_ra() exists[0] and conflicts with local get_ra()
that has a completely different purpose. So let's rename local get_ra()
to wifi_get_ra() to make it different from Linux's get_ra().

[0]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/arch/powerpc/include/asm/disassemble.h?h=v6.1-rc7#n49

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
2022-12-01 15:24:08 +01:00
lwfinger
3f1d7b6dc7
Merge pull request #31 from johnkeeping/rtnl-locking
rtl8723ds: fix rtnl_lock handling
2022-11-30 09:26:02 -06:00
lwfinger
38231d5832
Merge pull request #30 from johnkeeping/sta-info-alignment
rtl8723ds: fix sta_info alignment
2022-11-29 19:35:49 -06:00
John Keeping
dac75d70bc rtl8723ds: simplify locking in rtw_change_ifname()
As the comment says, rtnl_lock is acquired by the caller of this
function.  In fact this is not specific to 2.6.26 and later but has
always been the case, so checking lock state is unnecessary and we can
just call (un)register_netdevice() knowing that rtnl_lock is held.
2022-11-29 18:41:01 +00:00
John Keeping
1eca486544 rtl8723ds: fix locking for (un)register
rtnl_is_locked() checks whether the lock is currently held by any task,
not specifically by _this_ task so it is wrong to use it in the
(un)register path.

In both of these cases, examining the call stack shows that there is no
way for rtnl_lock to be taken by the task running these functions, so
remove the checks.

Further, (un)register_netdev() have existed since the beginning of Git
history so there's no reason for a version check here and we can always
call the function that takes the lock itself and should never call the
version which expects rtnl_lock to be held.
2022-11-29 18:41:01 +00:00
John Keeping
255c827ec1 rtl8723ds: fix sta_info alignment
Allocation function return memory that is properly aligned for most data
types, there is no need to manually align the buffer later.

On 64-bit systems this is particularly wrong as struct sta_info should
be 8-byte aligned so this calculation is guaranteed to misalign the
structure.  If the architecture requires aligned access, this leads to
an alignment fault and panic.

Signed-off-by: John Keeping <john@metanate.com>
2022-11-29 18:39:10 +00:00
lwfinger
fa06cb893c
Merge pull request #29 from giuliobenetti/fix/user-extra-flags-override
Makefile: move 'EXTRA_CFLAGS += $(USER_EXTRA_CFLAGS)' at the end of E…
2022-11-16 09:49:28 -06:00
Giulio Benetti
769a1943cb Makefile: move 'EXTRA_CFLAGS += $(USER_EXTRA_CFLAGS)' at the end of EXTRA_FLAGS assignment
At the moment USER_EXTRA_CFLAGS can't override local Makfile EXTRA_CFLAGS
since it's assigned at the beginning of the Makefile. For example it's not
possible to undefine the hardcoded CONFIG_LITTLE_ENDIAN and this doesn't
allow to build these modules for big endian architectures. So let's move
the assignment of USER_EXTRA_CFLAGS to EXTRA_CFLAGS after the last
EXTRA_CFLAGS assignment.

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
2022-11-16 16:08:21 +01:00
Larry Finger
5ab2d3f385 rtl8723ds: Fix builds for kernels through 6.1
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2022-11-04 10:41:53 -05:00
lwfinger
912fdb3053
Merge pull request #27 from xypron/rtw_mfree_stainfo
rtl8723ds: fix rtw_mfree_stainfo()
2022-10-20 10:01:13 -05:00
Heinrich Schuchardt
5ce43b6183 rtl8723ds: fix rtw_mfree_stainfo()
Building with GCC 12.2 results in:

/var/lib/dkms/licheerv-rtl8723ds/1.0/build/core/rtw_sta_mgt.c:
In function ‘rtw_mfree_stainfo’:
/var/lib/dkms/licheerv-rtl8723ds/1.0/build/core/rtw_sta_mgt.c:338:25:
warning: the comparison will always evaluate as ‘true’ for
the address of ‘lock’ will never be NULL [-Waddress]
  338 |         if (&psta->lock != NULL)
      |

Remove the superfluous check.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
2022-10-20 14:28:31 +02:00
lwfinger
3febf28dc7
Merge pull request #26 from AlexGhiti/int/alex/fix_5.19
rtl8723ds: Fix compilation errors on a 5.19 kernel
2022-10-18 09:37:28 -05:00
Alexandre Ghiti
ce40065dc4 rtl8723ds: Fix compilation errors on a 5.19 kernel
Fix the following errors that happen on a 5.19 kernel:

error: initialization of ‘int (*)(struct wiphy *, struct net_device *, unsigned int)’
       from incompatible pointer type ‘int (*)(struct wiphy *, struct net_device *)’
       [-Werror=incompatible-pointer-types]
 6821 | .stop_ap = cfg80211_rtw_stop_ap,

error: ‘struct wireless_dev’ has no member named ‘current_bss’
 7052 | if (wdev->current_bss) {

Signed-off-by: Alexandre Ghiti <alexandre.ghiti@canonical.com>
2022-10-18 15:26:13 +02:00
lwfinger
83032266f6
Merge pull request #22 from johnkeeping/preempt-rt
rtl8723ds: remove raw_spinlock on RT
2022-07-26 16:36:43 -05:00
John Keeping
161bb7bab4 rtl8723ds: remove raw_spinlock on RT
There's no need for a raw spinlock in this driver as it doesn't do
anything in hardirq context on -rt.  Some of the critical sections
guarded by these locks are long and contain unbounded loops so there is
a risk of raw spinlocks causing latency spikes on -rt.

The existing code is broken with CONFIG_PREEMPT_RT anyway as only a
subset of the functions that depend on lock type are covered by the
preprocessor #if/#else blocks.

Remove the special-case for CONFIG_PREEMPT_RT.

Signed-off-by: John Keeping <john@metanate.com>
2022-07-26 15:06:25 +01:00
Larry Finger
6f3869f15a rtl8723ds: Change Makefile to handle riscv32 and riscv64
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2022-06-01 10:15:24 -05:00
Larry Finger
76146e8584 rtl8723ds: Fix build errors with kernel 5.18
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2022-04-07 10:53:17 -05:00
Larry Finger
76fb80685b rtl8723ds: Fix build on kernel 5.17
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2022-02-05 11:47:13 -06:00
lwfinger
2c218a36ed
Merge pull request #14 from jekamps/kernel_5.15-fix
rtl8723ds: Fix build with kernel 5.15
2022-01-18 10:13:30 -06:00
John-Eric Kamps
b80b52a36e rtl8723ds: Fix build with kernel 5.15
Signed-off-by: John-Eric Kamps <johnny86@gmx.de>
2022-01-17 23:28:21 +01:00
lwfinger
1b6ddd544b
Merge pull request #11 from Icenowy/newest-kernel
Adapt for newest kernel (5.14)
2021-07-24 12:40:07 -05:00
Icenowy Zheng
9afd800400 fix hang on 5.14
Signed-off-by: Icenowy Zheng <icenowy@sipeed.com>
2021-07-24 18:40:13 +08:00
Icenowy Zheng
4bc94be2c6 fix build for 5.12
Signed-off-by: Icenowy Zheng <icenowy@sipeed.com>
2021-07-24 18:40:05 +08:00
Icenowy Zheng
6fde63d7c1 fix build for removed get_fs/set_fs (5.10)
Signed-off-by: Icenowy Zheng <icenowy@sipeed.com>
2021-07-24 18:38:55 +08:00
Larry Finger
f3167881f4 rtl8723ds: Use CONFIG_PREEMPT_RT to select raw spin lock form for real-time kernels
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2021-03-24 21:00:11 -05:00
Larry Finger
9837ccab16 rtl8723ds: Fix some smatch warnings
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2021-03-18 16:42:51 -05:00
Larry Finger
80af87ac76 rtl8723ds: Update cfg80211_rtw_mgmt_frame_register for kernel 5.8
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2020-09-18 18:49:41 -05:00
Larry Finger
c54996f3a7 rtl8723ds: Fix builds for kernel 5.8+
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2020-09-17 11:19:09 -05:00
Larry Finger
149dcf1140 rtl8723ds: Add *.d to .gitignore
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2020-04-11 11:37:54 -05:00
Larry Finger
4ae3c679a9 rtl8723ds: Fix "ielen" not initialized
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2020-04-11 11:35:18 -05:00
Larry Finger
798d7c0de7 Merge branch 'master' of http://github.com/lwfinger/rtl8723ds 2020-04-11 11:33:40 -05:00
Larry Finger
e8dba16f88 rtl8723ds:" Fix build on kernel 5.3 and newer
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
2020-04-11 11:29:25 -05:00
lwfinger
3f74a755b2
Merge pull request #6 from HonJEK/linux_5.6_fix
Linux 5.6 fix
2020-04-11 11:20:55 -05:00
John-Eric Kamps
17db5978f6 rtl8723ds: Fix fallthrough annotation
Signed-off-by: John-Eric Kamps <john-eric.kamps@honeywell.com>
2020-04-11 08:51:45 +02:00
John-Eric Kamps
2ca33c2b77 add proc_ops for kernel 5.6
Signed-off-by: John-Eric Kamps <john-eric.kamps@honeywell.com>
2020-04-11 08:49:48 +02:00
lwfinger
2c4a1a09c1
Merge pull request #5 from igorpecovnik/master
Typo
2020-03-04 12:17:56 -06:00
Igor Pečovnik
6a2e44322d
Typo
This fixes compilation on LK < 4.15
2020-03-03 18:59:11 +01:00