mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-05 11:53:41 +00:00

igc_acquire_nvm() and igc_release_nvm() were added in 2018 as part of
commit ab40561268
("igc: Add NVM support")
but never used.
Remove them.
The igc_1225.c has it's own specific implementations.
Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Reviewed-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Link: https://patch.msgid.link/20250102174142.200700-2-linux@treblig.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
13 lines
349 B
C
13 lines
349 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2018 Intel Corporation */
|
|
|
|
#ifndef _IGC_NVM_H_
|
|
#define _IGC_NVM_H_
|
|
|
|
s32 igc_read_mac_addr(struct igc_hw *hw);
|
|
s32 igc_read_nvm_eerd(struct igc_hw *hw, u16 offset, u16 words, u16 *data);
|
|
s32 igc_validate_nvm_checksum(struct igc_hw *hw);
|
|
s32 igc_update_nvm_checksum(struct igc_hw *hw);
|
|
|
|
#endif
|