staging: rtl8723bs: fix open parenthesis alignment

Fix checkpatch.pl check regarding:
- Lines should not end with a '('

Collapse the multi-line function signature of CheckPositive() into a
single line to adhere to kernel coding standards.

Signed-off-by: Mahad Ibrahim <mahad.ibrahim.dev@gmail.com>
Link: https://patch.msgid.link/20260129160426.13737-2-mahad.ibrahim.dev@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Mahad Ibrahim
2026-01-29 21:04:22 +05:00
committed by Greg Kroah-Hartman
parent 5491110735
commit 2a9fa972e3
2 changed files with 2 additions and 6 deletions

View File

@@ -8,9 +8,7 @@
#include <linux/kernel.h>
#include "odm_precomp.h"
static bool CheckPositive(
struct dm_odm_t *pDM_Odm, const u32 Condition1, const u32 Condition2
)
static bool CheckPositive(struct dm_odm_t *pDM_Odm, const u32 Condition1, const u32 Condition2)
{
u8 _BoardType =
((pDM_Odm->BoardType & BIT4) >> 4) << 0 | /* _GLNA */

View File

@@ -8,9 +8,7 @@
#include <linux/kernel.h>
#include "odm_precomp.h"
static bool CheckPositive(
struct dm_odm_t *pDM_Odm, const u32 Condition1, const u32 Condition2
)
static bool CheckPositive(struct dm_odm_t *pDM_Odm, const u32 Condition1, const u32 Condition2)
{
u8 _BoardType =
((pDM_Odm->BoardType & BIT4) >> 4) << 0 | /* _GLNA */