1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * NOTE: DAVICOM DM9000 ethernet driver interface 4 * 5 * Authors: Remy Bohmer <linux@bohmer.net> 6 */ 7 #ifndef __DM9000_H__ 8 #define __DM9000_H__ 9 10 /****************** function prototypes **********************/ 11 #if !defined(CONFIG_DM9000_NO_SROM) 12 void dm9000_write_srom_word(int offset, u16 val); 13 void dm9000_read_srom_word(int offset, u8 *to); 14 #endif 15 16 #endif /* __DM9000_H__ */ 17