1*e5a3bc24SRemy Bohmer /* 2*e5a3bc24SRemy Bohmer * NOTE: DAVICOM DM9000 ethernet driver interface 3*e5a3bc24SRemy Bohmer * 4*e5a3bc24SRemy Bohmer * Authors: Remy Bohmer <linux@bohmer.net> 5*e5a3bc24SRemy Bohmer * 6*e5a3bc24SRemy Bohmer * This program is free software; you can redistribute it and/or 7*e5a3bc24SRemy Bohmer * modify it under the terms of the GNU General Public License 8*e5a3bc24SRemy Bohmer * as published by the Free Software Foundation; either version 9*e5a3bc24SRemy Bohmer * 2 of the License, or (at your option) any later version. 10*e5a3bc24SRemy Bohmer */ 11*e5a3bc24SRemy Bohmer #ifndef __DM9000_H__ 12*e5a3bc24SRemy Bohmer #define __DM9000_H__ 13*e5a3bc24SRemy Bohmer 14*e5a3bc24SRemy Bohmer /****************** function prototypes **********************/ 15*e5a3bc24SRemy Bohmer #if !defined(CONFIG_DM9000_NO_SROM) 16*e5a3bc24SRemy Bohmer void dm9000_write_srom_word(int offset, u16 val); 17*e5a3bc24SRemy Bohmer void dm9000_read_srom_word(int offset, u8 *to); 18*e5a3bc24SRemy Bohmer #endif 19*e5a3bc24SRemy Bohmer 20*e5a3bc24SRemy Bohmer #endif /* __DM9000_H__ */ 21