mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 14:04:54 +02:00
Staging: rtl8192e: make alignment match open parenthesis
This patch removes the following checks generated by checkpatch.pl: ./drivers/staging/rtl8192e/rtl819x_BAProc.c:261: CHECK: Alignment should match open parenthesis ./drivers/staging/rtl8192e/rtl819x_BAProc.c:284: CHECK: Alignment should match open parenthesis ./drivers/staging/rtl8192e/rtl819x_BAProc.c:421: CHECK: Alignment should match open parenthesis ./drivers/staging/rtl8192e/rtl819x_BAProc.c:441: CHECK: Alignment should match open parenthesis Signed-off-by: Anjandev Momi <anjan@momi.ca> Link: https://lore.kernel.org/r/20221014081839.23902-4-anjan@momi.ca Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a079a4b2c9
commit
2f618d1167
|
|
@ -253,7 +253,7 @@ int rtllib_rx_ADDBAReq(struct rtllib_device *ieee, struct sk_buff *skb)
|
|||
goto OnADDBAReq_Fail;
|
||||
}
|
||||
if (!GetTs(ieee, (struct ts_common_info **)&pTS, dst,
|
||||
(u8)(pBaParamSet->field.tid), RX_DIR, true)) {
|
||||
(u8)(pBaParamSet->field.tid), RX_DIR, true)) {
|
||||
rc = ADDBA_STATUS_REFUSED;
|
||||
netdev_warn(ieee->dev, "%s(): can't get TS\n", __func__);
|
||||
goto OnADDBAReq_Fail;
|
||||
|
|
@ -412,7 +412,7 @@ int rtllib_rx_DELBA(struct rtllib_device *ieee, struct sk_buff *skb)
|
|||
}
|
||||
|
||||
if (!ieee->current_network.qos_data.active ||
|
||||
!ieee->pHTInfo->bCurrentHTSupport) {
|
||||
!ieee->pHTInfo->bCurrentHTSupport) {
|
||||
netdev_warn(ieee->dev,
|
||||
"received DELBA while QOS or HT is not supported(%d, %d)\n",
|
||||
ieee->current_network. qos_data.active,
|
||||
|
|
@ -432,7 +432,7 @@ int rtllib_rx_DELBA(struct rtllib_device *ieee, struct sk_buff *skb)
|
|||
struct rx_ts_record *pRxTs;
|
||||
|
||||
if (!GetTs(ieee, (struct ts_common_info **)&pRxTs, dst,
|
||||
(u8)pDelBaParamSet->field.tid, RX_DIR, false)) {
|
||||
(u8)pDelBaParamSet->field.tid, RX_DIR, false)) {
|
||||
netdev_warn(ieee->dev,
|
||||
"%s(): can't get TS for RXTS. dst:%pM TID:%d\n",
|
||||
__func__, dst,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user