Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* Copyright (c)  2018 Intel Corporation */
0003 
0004 #ifndef _IGC_NVM_H_
0005 #define _IGC_NVM_H_
0006 
0007 s32 igc_acquire_nvm(struct igc_hw *hw);
0008 void igc_release_nvm(struct igc_hw *hw);
0009 s32 igc_read_mac_addr(struct igc_hw *hw);
0010 s32 igc_read_nvm_eerd(struct igc_hw *hw, u16 offset, u16 words, u16 *data);
0011 s32 igc_validate_nvm_checksum(struct igc_hw *hw);
0012 s32 igc_update_nvm_checksum(struct igc_hw *hw);
0013 
0014 #endif