brintos

brintos / linux-shallow public Read only

0
0
Text · 430 B · f9fc2e9 Raw
15 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/* Copyright (c)  2018 Intel Corporation */3 4#ifndef _IGC_NVM_H_5#define _IGC_NVM_H_6 7s32 igc_acquire_nvm(struct igc_hw *hw);8void igc_release_nvm(struct igc_hw *hw);9s32 igc_read_mac_addr(struct igc_hw *hw);10s32 igc_read_nvm_eerd(struct igc_hw *hw, u16 offset, u16 words, u16 *data);11s32 igc_validate_nvm_checksum(struct igc_hw *hw);12s32 igc_update_nvm_checksum(struct igc_hw *hw);13 14#endif15