mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 00:53:34 +02:00
net: ngbe: remove redundant macros
NGBE_NCSI_SUP and NGBE_NCSI_MASK are duplicate-defined, they can be replaced by the macros defined in libwx. Just remove them. Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com> Reviewed-by: Joe Damato <joe@dama.to> Link: https://patch.msgid.link/20260407025616.33652-4-jiawenwu@trustnetic.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
752157d9ed
commit
9bc29a87fb
|
|
@ -57,7 +57,7 @@ static void ngbe_init_type_code(struct wx *wx)
|
|||
|
||||
wx->mac.type = wx_mac_em;
|
||||
type_mask = (u16)(wx->subsystem_device_id & NGBE_OEM_MASK);
|
||||
ncsi_mask = wx->subsystem_device_id & NGBE_NCSI_MASK;
|
||||
ncsi_mask = wx->subsystem_device_id & WX_NCSI_MASK;
|
||||
wol_mask = wx->subsystem_device_id & WX_WOL_MASK;
|
||||
|
||||
val = rd32(wx, WX_CFG_PORT_ST);
|
||||
|
|
@ -66,7 +66,7 @@ static void ngbe_init_type_code(struct wx *wx)
|
|||
em_mac_type_mdi;
|
||||
|
||||
wx->wol_hw_supported = (wol_mask == WX_WOL_SUP) ? 1 : 0;
|
||||
wx->ncsi_enabled = (ncsi_mask == NGBE_NCSI_MASK ||
|
||||
wx->ncsi_enabled = (ncsi_mask == WX_NCSI_SUP ||
|
||||
type_mask == NGBE_SUBID_OCP_CARD) ? 1 : 0;
|
||||
|
||||
switch (type_mask) {
|
||||
|
|
|
|||
|
|
@ -37,9 +37,6 @@
|
|||
|
||||
#define NGBE_OEM_MASK 0x00FF
|
||||
|
||||
#define NGBE_NCSI_SUP 0x8000
|
||||
#define NGBE_NCSI_MASK 0x8000
|
||||
|
||||
/**************** EM Registers ****************************/
|
||||
/* chip control Registers */
|
||||
#define NGBE_MIS_PRB_CTL 0x10010
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user