firmware.h 523 B

1234567891011121314151617181920212223242526
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
  4. * All rights reserved.
  5. *
  6. * File: firmware.h
  7. *
  8. * Purpose: Version and Release Information
  9. *
  10. * Author: Yiching Chen
  11. *
  12. * Date: May 20, 2004
  13. *
  14. */
  15. #ifndef __FIRMWARE_H__
  16. #define __FIRMWARE_H__
  17. #include "device.h"
  18. int vnt_download_firmware(struct vnt_private *priv);
  19. int vnt_firmware_branch_to_sram(struct vnt_private *priv);
  20. int vnt_check_firmware_version(struct vnt_private *priv);
  21. #endif /* __FIRMWARE_H__ */