mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 23:36:49 +07:00
51dce24bcd
After many years of having a ~30 line copyright and license header to our source files, we are finally able to reduce that to one line with the advent of the SPDX identifier. Also caught a few files missing the SPDX license identifier, so fixed them up. Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Acked-by: Shannon Nelson <shannon.nelson@oracle.com> Acked-by: Richard Cochran <richardcochran@gmail.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
23 lines
830 B
C
23 lines
830 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright(c) 1999 - 2018 Intel Corporation. */
|
|
|
|
#ifndef _E1000E_NVM_H_
|
|
#define _E1000E_NVM_H_
|
|
|
|
s32 e1000e_acquire_nvm(struct e1000_hw *hw);
|
|
|
|
s32 e1000e_poll_eerd_eewr_done(struct e1000_hw *hw, int ee_reg);
|
|
s32 e1000_read_mac_addr_generic(struct e1000_hw *hw);
|
|
s32 e1000_read_pba_string_generic(struct e1000_hw *hw, u8 *pba_num,
|
|
u32 pba_num_size);
|
|
s32 e1000e_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
|
|
s32 e1000e_valid_led_default(struct e1000_hw *hw, u16 *data);
|
|
s32 e1000e_validate_nvm_checksum_generic(struct e1000_hw *hw);
|
|
s32 e1000e_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
|
|
s32 e1000e_update_nvm_checksum_generic(struct e1000_hw *hw);
|
|
void e1000e_release_nvm(struct e1000_hw *hw);
|
|
|
|
#define E1000_STM_OPCODE 0xDB00
|
|
|
|
#endif
|