Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 619db46b authored by Yuval Mintz's avatar Yuval Mintz Committed by David S. Miller
Browse files

qed: Remove unused NVM vendor ID



Remove 2 unused fields from driver code.

Signed-off-by: default avatarYuval Mintz <Yuval.Mintz@qlogic.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8c925c44
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -146,9 +146,6 @@ struct qed_hw_info {
	u16				ovlan;
	u32				part_num[4];

	u32				vendor_id;
	u32				device_id;

	unsigned char			hw_mac_addr[ETH_ALEN];

	struct qed_igu_info		*p_igu_info;
+0 −7
Original line number Diff line number Diff line
@@ -1083,13 +1083,6 @@ static int qed_hw_get_nvm_info(struct qed_hwfn *p_hwfn,
	/* Read nvm_cfg1  (Notice this is just offset, and not offsize (TBD) */
	nvm_cfg1_offset = qed_rd(p_hwfn, p_ptt, nvm_cfg_addr + 4);

	/* Read Vendor Id / Device Id */
	addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
	       offsetof(struct nvm_cfg1, glob) +
	       offsetof(struct nvm_cfg1_glob, pci_id);
	p_hwfn->hw_info.vendor_id = qed_rd(p_hwfn, p_ptt, addr) &
				    NVM_CFG1_GLOB_VENDOR_ID_MASK;

	addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
	       offsetof(struct nvm_cfg1, glob) +
	       offsetof(struct nvm_cfg1_glob, core_cfg);