rtl8852au
rtl8852au copied to clipboard
fix: fallthrough compile error
The original fallthrough macro definition caused a compile error due to its incompatible syntax in certain compiler versions.
This commit replaces the fallthrough macro definition with the attribute((fallthrough)) syntax, which is recognized by GCC and resolves the compilation issue.
This change ensures compatibility and prevents the "expected expression before ‘do’" error during the build process.