dm9000.h 430 B

1234567891011121314151617
  1. /*
  2. * NOTE: DAVICOM DM9000 ethernet driver interface
  3. *
  4. * Authors: Remy Bohmer <linux@bohmer.net>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __DM9000_H__
  9. #define __DM9000_H__
  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. #endif /* __DM9000_H__ */