dm9000.h 430 B

12345678910111213141516
  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. /****************** function prototypes **********************/
  10. #if !defined(CONFIG_DM9000_NO_SROM)
  11. void dm9000_write_srom_word(int offset, u16 val);
  12. void dm9000_read_srom_word(int offset, u8 *to);
  13. #endif
  14. #endif /* __DM9000_H__ */