Commit 7f17b86a authored by Ryder Lee's avatar Ryder Lee Committed by Felix Fietkau
Browse files

mt76: mt7603: fix some checkpatch warnings



This fixes the following checkpatch warnings:

WARNING: Improper SPDX comment style
CHECK: No space is necessary after a cast

Signed-off-by: default avatarRyder Lee <ryder.lee@mediatek.com>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 06413abe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
/* SPDX-License-Identifier: ISC */
// SPDX-License-Identifier: ISC

#include "mt7603.h"

+1 −1
Original line number Diff line number Diff line
/* SPDX-License-Identifier: ISC */
// SPDX-License-Identifier: ISC

#include "mt7603.h"

+1 −1
Original line number Diff line number Diff line
/* SPDX-License-Identifier: ISC */
// SPDX-License-Identifier: ISC

#include "mt7603.h"

+4 −3
Original line number Diff line number Diff line
/* SPDX-License-Identifier: ISC */
// SPDX-License-Identifier: ISC

#include "mt7603.h"
#include "mac.h"
@@ -181,7 +181,8 @@ int mt7603_dma_init(struct mt7603_dev *dev)
	init_waitqueue_head(&dev->mt76.mmio.mcu.wait);
	skb_queue_head_init(&dev->mt76.mmio.mcu.res_q);

	tasklet_init(&dev->mt76.tx_tasklet, mt7603_tx_tasklet, (unsigned long)dev);
	tasklet_init(&dev->mt76.tx_tasklet, mt7603_tx_tasklet,
		     (unsigned long)dev);

	mt76_clear(dev, MT_WPDMA_GLO_CFG,
		   MT_WPDMA_GLO_CFG_TX_DMA_EN |
+1 −1
Original line number Diff line number Diff line
/* SPDX-License-Identifier: ISC */
// SPDX-License-Identifier: ISC

#include "mt7603.h"
#include "eeprom.h"
Loading