dm9000.h 697 B

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